BillBoxSerial.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. /// <summary>
  8. /// 临时箱流水号表
  9. /// </summary>
  10. [Tenant("sx")]
  11. [SugarTable("Bill_BoxSerial")]
  12. public class BillBoxSerial : BaseModel
  13. {
  14. /// <summary>
  15. /// 年
  16. /// </summary>
  17. [SugarColumn(ColumnDataType = "nvarchar", Length = 10, IsNullable = false)]
  18. public string Year { get; set; }
  19. /// <summary>
  20. /// 月
  21. /// </summary>
  22. [SugarColumn(ColumnDataType = "nvarchar", Length = 10, IsNullable = false)]
  23. public string Month { get; set; }
  24. /// <summary>
  25. /// 日
  26. /// </summary>
  27. [SugarColumn(ColumnDataType = "nvarchar", Length = 10, IsNullable = false)]
  28. public string Day { get; set; }
  29. /// <summary>
  30. /// 序号
  31. /// </summary>
  32. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  33. public int Num { get; set; }
  34. /// <summary>
  35. /// 箱号
  36. /// </summary>
  37. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  38. public string BoxNum { get; set; }
  39. /// <summary>
  40. /// 等级
  41. /// </summary>
  42. [SugarColumn(ColumnDataType = "nvarchar", Length = 10, IsNullable = false)]
  43. public string Grade { get; set; }
  44. }
  45. }