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.
52 lines
1.0 KiB
C#
52 lines
1.0 KiB
C#
2 years ago
|
namespace DS.WMS.Core.FeeModule.Dtos;
|
||
|
|
||
|
public class WmsFeeInput
|
||
|
{
|
||
|
public Guid? GID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 明细
|
||
|
/// </summary>
|
||
|
public List<WmsFeeDetailInput> 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; }
|
||
|
}
|