ptSysConfig.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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("sys_config", "配置信息表")]
  9. public class ptSysConfig : BaseModel
  10. {
  11. [SugarColumn(ColumnName = "code", Length = 100)]
  12. public string Code { get; set; }
  13. [SugarColumn(ColumnName = "name", Length = 100)]
  14. public string Name { get; set; }
  15. [SugarColumn(ColumnName = "scontent", Length = 100)]
  16. public string SContent { get; set; }
  17. [SugarColumn(ColumnName = "stype", Length = 50)]
  18. public string SType { get; set; }
  19. [SugarColumn(ColumnName = "default1", Length = 100, IsNullable = true)]
  20. public string Default1 { get; set; }
  21. [SugarColumn(ColumnName = "default2", Length = 500, IsNullable = true)]
  22. public string Default2 { get; set; }
  23. [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]
  24. public string Default3 { get; set; }
  25. [SugarColumn(ColumnName = "default4", Length = 100, IsNullable = true)]
  26. public string Default4 { get; set; }
  27. /// <summary>
  28. /// 用于存放mes绑定的炉号
  29. /// </summary>
  30. [SugarColumn(ColumnName = "default5", Length = 100, IsNullable = true)]
  31. public string Default5 { get; set; }
  32. /// <summary>
  33. /// 用于存放mes绑定的炉号上传结果标识
  34. /// </summary>
  35. [SugarColumn(ColumnName = "default6", Length = 100, IsNullable = true)]
  36. public string Default6 { get; set; }
  37. /// <summary>
  38. /// 更新的炉号
  39. /// </summary>
  40. [SugarColumn(ColumnName = "default7", Length = 100, IsNullable = true)]
  41. public string Default7 { get; set; }
  42. }
  43. }