sxBaseMaterGroup.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("base_mater_group", "物料组表")]
  9. public class sxBaseMaterGroup : BaseModel
  10. {
  11. /// <summary>
  12. /// 叶类代码
  13. /// </summary>
  14. [SugarColumn(ColumnName = "leaf_type_code", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  15. public string LeafTypeCode { get; set; }
  16. /// <summary>
  17. /// 叶类名称
  18. /// </summary>
  19. [SugarColumn(ColumnName = "leaf_type_name", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  20. public string LeafTypeName { get; set; }
  21. /// <summary>
  22. /// 中类代码
  23. /// </summary>
  24. [SugarColumn(ColumnName = "mid_type_code", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  25. public string MidTypeCode { get; set; }
  26. /// <summary>
  27. /// 中类名称
  28. /// </summary>
  29. [SugarColumn(ColumnName = "mid_type_name", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  30. public string MidTypeName { get; set; }
  31. /// <summary>
  32. /// 大类代码
  33. /// </summary>
  34. [SugarColumn(ColumnName = "head_type_code", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  35. public string HeadTypeCode { get; set; }
  36. /// <summary>
  37. /// 大类名称
  38. /// </summary>
  39. [SugarColumn(ColumnName = "head_type_name", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  40. public string HeadTypeName { get; set; }
  41. /// <summary>
  42. /// 预留字段1
  43. /// </summary>
  44. [SugarColumn(ColumnName = "default1", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  45. public string Default1 { get; set; }
  46. /// <summary>
  47. /// 预留字段2
  48. /// </summary>
  49. [SugarColumn(ColumnName = "default2", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  50. public string Default2 { get; set; }
  51. /// <summary>
  52. /// 预留字段3
  53. /// </summary>
  54. [SugarColumn(ColumnName = "default3", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  55. public string Default3 { get; set; }
  56. }
  57. }