using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组 - 出入境费用 - 子项 - 草稿 /// [SugarTable("Grp_DayAndCostDraft")] public class Grp_DayAndCostDraft : EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ParentId { get; set; } /// /// 类型:1为住宿费;2为伙食费;3为公杂费;4培训费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Type { get; set; } /// /// 天数 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Days { get; set; } /// /// 地名Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int NationalTravelFeeId { get; set; } /// /// 地名 - 弃用字段不删 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string? Place { get; set; } /// /// 费用标准 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Cost { get; set; } /// /// 币种 /// Sys_SetData STid = 66 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } /// /// 小计 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal SubTotal { get; set; } } }