using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组增减款项表 /// --其他款项 /// [SugarTable("Grp_DecreasePayments")] public class Grp_DecreasePayments: EntityBase { /// /// 团组外键编号 /// [SugarColumn(IsNullable =true,ColumnDataType ="int")] public int DiId { get; set; } /// /// 费用名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")] public string PriceName { get; set; } /// /// 费用金额 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Price { get; set; } /// /// 费用币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } /// /// 附件地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")] public string FilePath { get; set; } } }