Pm_GoodsStorage.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using OASystem.Domain.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Entities.PersonnelModule
  8. {
  9. /// <summary>
  10. /// 物品入库表
  11. /// </summary>
  12. [SugarTable(tableName: "Pm_GoodsStorage", tableDescription: "物品入库表")]
  13. public class Pm_GoodsStorage : EntityBase
  14. {
  15. /// <summary>
  16. /// 商品Id
  17. /// Pm_GoodsInfo Id
  18. /// </summary>
  19. [SugarColumn(ColumnDescription = "商品Id", IsNullable = true, ColumnDataType = "int")]
  20. public int GoodsId { get; set; }
  21. /// <summary>
  22. /// 批次号
  23. /// </summary>
  24. [SugarColumn(ColumnDescription = "批次号", IsNullable = true, ColumnDataType = "varchar(50)")]
  25. public string? BatchNo { get; set; }
  26. /// <summary>
  27. /// 此批次领用数量
  28. /// </summary>
  29. [SugarColumn(ColumnDescription = "此批次领用数量", IsNullable = true, ColumnDataType = "decimal(10,2)")]
  30. public decimal ReceiveQuantity { get; set; }
  31. /// <summary>
  32. /// 此次入库数量
  33. /// </summary>
  34. [SugarColumn(ColumnDescription = "此次入库数量", IsNullable = true, ColumnDataType = "decimal(10,2)")]
  35. public decimal Quantity { get; set; }
  36. /// <summary>
  37. /// 此次物品单价
  38. /// </summary>
  39. [SugarColumn(ColumnDescription = "此次数量单价", IsNullable = true, ColumnDataType = "decimal(10,2)")]
  40. public decimal UnitPrice { get; set; }
  41. /// <summary>
  42. /// 此次物品总价
  43. /// </summary>
  44. [SugarColumn(ColumnDescription = "此次物品总价", IsNullable = true, ColumnDataType = "decimal(10,2)")]
  45. public decimal TotalPrice { get; set; }
  46. /// <summary>
  47. /// 此次供应商名称
  48. /// </summary>
  49. [SugarColumn(ColumnDescription = "此次供应商名称", IsNullable = true, ColumnDataType = "varchar(100)")]
  50. public string? SupplierName { get; set; }
  51. /// <summary>
  52. /// 此次供应商电话
  53. /// </summary>
  54. [SugarColumn(ColumnDescription = "此次供应商电话", IsNullable = true, ColumnDataType = "varchar(30)")]
  55. public string? SupplierTel { get; set; }
  56. /// <summary>
  57. /// 此次供应商地址
  58. /// </summary>
  59. [SugarColumn(ColumnDescription = "此次供应商地址", IsNullable = true, ColumnDataType = "varchar(200)")]
  60. public string? SupplierAddress { get; set; }
  61. /// <summary>
  62. /// 此次供应商来源
  63. /// </summary>
  64. [SugarColumn(ColumnDescription = "此次供应商来源", IsNullable = true, ColumnDataType = "varchar(200)")]
  65. public string? SupplierSource { get; set; }
  66. /// <summary>
  67. /// 入库人
  68. /// </summary>
  69. [SugarColumn(ColumnDescription = "入库人", IsNullable = true, ColumnDataType = "int")]
  70. public int StorageUserId { get; set; }
  71. /// <summary>
  72. /// 入库时间
  73. /// </summary>
  74. [SugarColumn(ColumnDescription = "入库时间", IsNullable = true, ColumnDataType = "varchar(30)")]
  75. public string? StorageTime { get; set; }
  76. /// <summary>
  77. /// 入库确认状态
  78. /// </summary>
  79. [SugarColumn(ColumnDescription = "入库确认", IsNullable = true, ColumnDataType = "int")]
  80. public GoodsConfirmEnum ConfirmStatus { get; set; } = GoodsConfirmEnum.WaitConfirm;
  81. /// <summary>
  82. /// 入库确认描述
  83. /// </summary>
  84. [SugarColumn(ColumnDescription = "入库确认描述", IsNullable = true, ColumnDataType = "varchar(100)")]
  85. public string StatusDesc { get; set; } = string.Format("人事部:状态:待确认 审核人:- 审核时间:-;");
  86. //string.Format("人事部:状态:待确认 审核人:- 审核时间:-;<br/>财务部:状态:待确认 审核人:- 审核时间:-;");
  87. }
  88. }