using DS.Module.Core; using DS.WMS.Core.Op.Entity; using SqlSugar; namespace DS.WMS.Core.Fee.Entity { /// /// 往来单位费用模板记录 /// [SugarTable("fee_cust_template_record", "往来单位费用模板记录")] public class FeeCustTemplateRecord { /// /// ID /// [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } /// /// 业务ID /// [SugarColumn(ColumnDescription = "业务ID")] public long BusinessId { get; set; } /// /// 业务类型 /// [SugarColumn(ColumnDescription = "业务类型")] public BusinessType BusinessType { get; set; } /// /// 费用模板Id /// [SugarColumn(ColumnDescription = "费用模板Id")] public long TemplateId { get; set; } /// /// 收付类型 /// [SugarColumn(ColumnDescription = "收付类型")] public FeeType FeeType { get; set; } /// /// 费用类别ID /// [SugarColumn(ColumnDescription = "费用类别ID", Length = 50, IsNullable = true)] public string? FeeCategoryId { get; set; } /// /// 创建人 /// [SugarColumn(ColumnDescription = "创建人")] public long CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }