ptBillBominfo.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.pt
  6. {
  7. [Tenant("pt")]
  8. [SugarTable("Bill_BomInfo")]
  9. public partial class ptBillBominfo : BaseModel
  10. {
  11. /// <summary>
  12. /// IsStop
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  15. public int IsStop { get; set; }
  16. /// <summary>
  17. /// WarehouseId
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  20. public long WarehouseId { get; set; }
  21. /// <summary>
  22. /// Code
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  25. public string Code { get; set; }
  26. /// <summary>
  27. /// Name
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// MatId
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  35. public long MatId { get; set; }
  36. /// <summary>
  37. /// HWCountQty
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  40. public int HWCountQty { get; set; }
  41. /// <summary>
  42. /// Default1
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  45. public string Default1 { get; set; }
  46. /// <summary>
  47. /// Default2
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  50. public string Default2 { get; set; }
  51. /// <summary>
  52. /// Default3
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  55. public string Default3 { get; set; }
  56. }
  57. }