namespace DS.WMS.Core.FeeModule.Dtos; public class WmsStorageBillInfoViewModel { public Guid WMSDUIID { get; set; } public string BSNO { get; set; } public string CUSTOMERNAME { get; set; } public DateTime? ACCDATE { get; set; } public decimal? QUANTITY { get; set; } public decimal? AMOUNT { get; set; } public DateTime? STARTDATE { get; set; } public DateTime? ENDDATE { get; set; } public string BILLSTATUS { get; set; } public string REMARK { get; set; } public bool? FEESTATUS { get; set; } public bool? BSSTATUS { get; set; } public string CORPID { get; set; } public string Creator { get; set; } public Guid? CreateID { get; set; } public DateTime? CreateDate { get; set; } }