You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
871 B
C#
41 lines
871 B
C#
2 years ago
|
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; }
|
||
|
}
|