using DS.Module.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 大简云扣费记录表 /// [SqlSugar.SugarTable("djy_charge_fee", "大简云扣费记录表")] public class DJYChargeFee : BaseModel { /// /// 单据ID /// [SqlSugar.SugarColumn(ColumnDescription = "单据ID", IsNullable = true)] public long BillId { get; set; } /// /// 提单号 /// [SqlSugar.SugarColumn(ColumnDescription = "提单号", Length = 50, IsNullable = true)] public string MBLNO { get; set; } /// /// 费用类型 /// [SqlSugar.SugarColumn(ColumnDescription = "费用类型", Length = 20, IsNullable = true)] public string FeeType { get; set; } /// /// 金额 /// [SqlSugar.SugarColumn(ColumnDescription = "金额", Length = 18, DecimalDigits = 2, IsNullable = true)] public Nullable Amount { get; set; } /// /// 单价 /// [SqlSugar.SugarColumn(ColumnDescription = "单价", Length = 18, DecimalDigits = 2, IsNullable = true)] public Nullable Price { get; set; } /// /// 费用类型 /// [SqlSugar.SugarColumn(ColumnDescription = "业务类型", Length = 50, IsNullable = true)] public string BSType { get; set; } /// /// 费用类型 /// [SqlSugar.SugarColumn(ColumnDescription = "发送类型", Length = 50, IsNullable = true)] public string SendType { get; set; } /// /// 批次号 /// [SqlSugar.SugarColumn(ColumnDescription = "批次号", Length = 64, IsNullable = true)] public string BatchNo { get; set; } /// /// MD5 /// [SqlSugar.SugarColumn(ColumnDescription = "MD5", Length = 64, IsNullable = true)] public string MD5 { get; set; } /// /// 状态 /// [SqlSugar.SugarColumn(ColumnDescription = "状态", Length = 20, IsNullable = true)] public string Status { get; set; } /// /// 回执消息 /// [SqlSugar.SugarColumn(ColumnDescription = "回执消息", Length = 200, IsNullable = true)] public string ResultNote { get; set; } } }