cpSysConfig.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.cp
  6. {
  7. [Tenant("cp")]
  8. [SugarTable("sys_config", "配置信息表")]
  9. public class cpSysConfig : 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 = 100, IsNullable = true)]
  22. public string Default2 { get; set; }
  23. [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]
  24. public string Default3 { get; set; }
  25. /// <summary>
  26. /// 码垛托盘输送铁托重量
  27. /// </summary>
  28. [SugarColumn(ColumnName = "default4", Length = 100, IsNullable = true)]
  29. public string Default4 { get; set; }
  30. [SugarColumn(ColumnName = "cache1state", Length = 50, IsNullable = true)]
  31. public string Cache1State { get; set; }
  32. [SugarColumn(ColumnName = "cache1weight", Length = 50, IsNullable = true)]
  33. public string Cache1Weight { get; set; }
  34. [SugarColumn(ColumnName = "robot", Length = 100, IsNullable = true)]
  35. public string Robot { get; set; }
  36. [SugarColumn(ColumnName = "taskflag", ColumnDataType = "int", IsNullable = true)]
  37. public int TaskFlag { get; set; }
  38. [SugarColumn(ColumnName = "cache2state", Length = 50, IsNullable = true)]
  39. public string Cache2State { get; set; }
  40. [SugarColumn(ColumnName = "cache2task", Length = 50, IsNullable = true)]
  41. public string Cache2Task { get; set; }
  42. }
  43. }