Bus_ConfItemInfo.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_ConfItem")]
  12. public class Bus_ConfItemInfo : EntityBase
  13. {
  14. /// <summary>
  15. /// 物料编号
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int ItemId { get; set; }
  19. /// <summary>
  20. /// 清单Id
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int ConfListId { get; set; }
  24. /// <summary>
  25. /// 采购数量
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  28. public int Count { get; set; }
  29. /// <summary>
  30. /// 规格
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  33. public string Specs { get; set; }
  34. /// <summary>
  35. /// 本次采购金额
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(9,2)")]
  38. public decimal CurrCost { get; set; }
  39. /// <summary>
  40. /// 操作备注
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]
  43. public string OpRemark { get; set; }
  44. }
  45. }