namespace DS.WMS.Core.System.Entity; public class INFO_FILES { /// /// /// [SqlSugar.SugarColumn(IsPrimaryKey = true)] public Guid GID { get; set; } /// /// /// public Guid PID { get; set; } /// /// /// public string FILENAME { get; set; } /// /// /// public string FILETYPE { get; set; } /// /// /// public byte[] IMGFILE { get; set; } /// /// /// public string UPLOADEMPLY { get; set; } /// /// /// public string UPLOADDATE { get; set; } /// /// /// public string FILEPATH { get; set; } /// /// /// public string IMGPATH { get; set; } /// /// /// public string PWORKTYPE { get; set; } /// /// /// public Guid? CreateID { get; set; } /// /// /// public DateTime? CreateDate { get; set; } /// /// /// public string Creator { get; set; } /// /// /// public Guid? ModifyID { get; set; } /// /// /// public DateTime? ModifyDate { get; set; } /// /// /// public string Modifier { get; set; } /// /// /// public string PBSNO { get; set; } /// /// /// public string MBLNO { get; set; } /// /// /// public string CNTRNO { get; set; } /// /// /// public string CORPID { get; set; } }