using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Code.Entity { /// /// 客户对账模板明细 /// [SqlSugar.SugarTable("code_check_bill_template_fee", "客户对账模板明细")] public class CodeCheckBillTemplateFee : BaseModel { /// /// 模板Id /// [SugarColumn(ColumnDescription = "模板Id", IsNullable = false)] public long TemplateId { get; set; } /// /// 收付类型(收、付) 1应收 2 应付 /// [SugarColumn(ColumnDescription = "收付类型(收、付)", IsNullable = false, DefaultValue = "1")] public FeeType FeeType { get; set; } /// /// 费用Id /// [SugarColumn(ColumnDescription = "费用Id")] public long FeeId { get; set; } /// /// 费用名称 /// [SugarColumn(ColumnDescription = "费用名称", Length = 100, IsNullable = true)] public string FeeName { get; set; } /// /// 币别 /// [SugarColumn(ColumnDescription = "币别", Length = 20)] public string Currency { get; set; } } }