namespace DS.WMS.Core.FeeModule.Dtos; public class WmsFeeInput { public Guid? GID { get; set; } /// /// 明细 /// public List List { get; set; } } public class WmsFeeDetailInput { public string GID { get; set; } public string BSNO { get; set; } public int? FEETYPE { get; set; } public string FEENAME { get; set; } public string CUSTOMERNAME { get; set; } public decimal? UNITPRICE { get; set; } = 0; public decimal? QUANTITY { get; set; } = 0; public decimal? AMOUNT { get; set; } = 0; public string CURRENCY { get; set; } public string REMARK { get; set; } public decimal? TAXRATE { get; set; } public decimal? TAX { get; set; } public decimal? TAXUNITPRICE { get; set; } public string INPUTMODE { get; set; } public string ClientId { get; set; } public string FeeId { get; set; } }