Grp_DayOtherPriceDraft.cs 1022 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 三公费用其他费用表 草稿
  10. /// </summary>
  11. [SugarTable("Grp_DayOtherPriceDraft")]
  12. public class Grp_DayOtherPriceDraft : EntityBase
  13. {
  14. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  15. public int ParentId { get; set; }
  16. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  17. public int SetDataId { get; set; }
  18. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  19. public int Index { get; set; }
  20. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  21. public decimal Cost { get; set; }
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int Currency { get; set; }
  24. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  25. public decimal SubTotal { get; set; }
  26. }
  27. }