sxSysConfig.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using SqlSugar;
  2. namespace wms.sqlsugar.model.sx
  3. {
  4. /// <summary>
  5. /// 配置信息表
  6. /// </summary>
  7. [Tenant("sx")]
  8. [SugarTable("sys_config", "配置信息表")]
  9. public class sxSysConfig : BaseModel
  10. {
  11. /// <summary>
  12. /// 编号
  13. /// </summary>
  14. [SugarColumn(ColumnName = "code", Length = 100)]
  15. public string Code { get; set; }
  16. /// <summary>
  17. /// 名称
  18. /// </summary>
  19. [SugarColumn(ColumnName = "name", Length = 100)]
  20. public string Name { get; set; }
  21. /// <summary>
  22. /// 内容
  23. /// </summary>
  24. [SugarColumn(ColumnName = "scontent", Length = 100)]
  25. public string SContent { get; set; }
  26. /// <summary>
  27. /// 类型
  28. /// </summary>
  29. [SugarColumn(ColumnName = "stype", Length = 50)]
  30. public string SType { get; set; }
  31. [SugarColumn(ColumnName = "default1", Length = 100, IsNullable = true)]
  32. public string Default1 { get; set; }
  33. [SugarColumn(ColumnName = "default2", Length = 100, IsNullable = true)]
  34. public string Default2 { get; set; }
  35. [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]
  36. public string Default3 { get; set; }
  37. [SugarColumn(ColumnName = "cache1state", Length = 50, IsNullable = true)]
  38. public string Cache1State { get; set; }
  39. [SugarColumn(ColumnName = "cache1weight", Length = 50, IsNullable = true)]
  40. public string Cache1Weight { get; set; }
  41. [SugarColumn(ColumnName = "robot", Length = 100, IsNullable = true)]
  42. public string Robot { get; set; }
  43. [SugarColumn(ColumnName = "taskflag", ColumnDataType = "int", IsNullable = true)]
  44. public int TaskFlag { get; set; }
  45. [SugarColumn(ColumnName = "cache2state", Length = 50, IsNullable = true)]
  46. public string Cache2State { get; set; }
  47. [SugarColumn(ColumnName = "cache2task", Length = 50, IsNullable = true)]
  48. public string Cache2Task { get; set; }
  49. }
  50. }