Bus_ConfItemListInfo.cs 909 B

12345678910111213141516171819202122232425262728293031323334
  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.Business
  7. {
  8. /// <summary>
  9. /// 会务物料采购总计
  10. /// </summary>
  11. [SugarTable("Bus_ConfItemList")]
  12. public class Bus_ConfItemListInfo : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组(会议)编号
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int Diid { get; set; }
  19. /// <summary>
  20. /// 总计成本
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  23. public decimal TotalCost { get; set; }
  24. /// <summary>
  25. /// Excel文件路径
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(255)")]
  28. public string ExcelPath { get; set; }
  29. }
  30. }