using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 三公费用其他费用表 草稿 /// [SugarTable("Grp_DayOtherPriceDraft")] public class Grp_DayOtherPriceDraft : EntityBase { [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ParentId { get; set; } [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SetDataId { get; set; } [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Index { get; set; } [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Cost { get; set; } [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal SubTotal { get; set; } } }