BillSkuInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. /// SKU信息
  9. /// </summary>
  10. [Tenant("sx")]
  11. [SugarTable("Bill_SkuInfo")]
  12. public class BillSkuInfo : BaseModel
  13. {
  14. /// <summary>
  15. /// sku编码
  16. /// </summary>
  17. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  18. public string SkuCode { get; set; }
  19. /// <summary>
  20. /// 分类代号
  21. /// </summary>
  22. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  23. public string TypeCode { get; set; }
  24. /// <summary>
  25. /// 分类描述
  26. /// </summary>
  27. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  28. public string TypeName { get; set; }
  29. /// <summary>
  30. /// 参数代号
  31. /// </summary>
  32. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  33. public string FieldCode { get; set; }
  34. /// <summary>
  35. /// 参数描述
  36. /// </summary>
  37. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  38. public string FieldName { get; set; }
  39. /// <summary>
  40. /// 参数值
  41. /// </summary>
  42. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  43. public string FieldValue { get; set; }
  44. /// <summary>
  45. /// 参数单位
  46. /// </summary>
  47. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  48. public string FieldUnit { get; set; }
  49. }
  50. }