123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
- /// <summary>
- /// 三公费用其他费用表 草稿
- /// </summary>
- [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; }
- }
- }
|