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.
25 lines
574 B
C#
25 lines
574 B
C#
namespace DS.WMS.Core.FeeModule.Dtos;
|
|
|
|
public class WmsFeeRateInput
|
|
{
|
|
public Guid? FEERATEID { get; set; }
|
|
public string CUSTOMERNAME { get; set; } = "";
|
|
|
|
public string GOODSFEETYPE { get; set; } = "";
|
|
|
|
public string REMARK { get; set; } = "";
|
|
|
|
public bool? INUSE { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// 计费大类ID
|
|
/// </summary>
|
|
public Guid? GoodsFeeTypeGID { get; set; }
|
|
|
|
public string ClientId { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 明细
|
|
/// </summary>
|
|
public List<WmsFeeRateDetailInput> List { get; set; }
|
|
} |