SysConfig.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.cp
  6. {
  7. [Tenant("cp")]
  8. [SugarTable("sys_config")]
  9. public class SysConfig : 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. /// cache1state
  27. /// </summary>
  28. [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
  29. public string cache1state { get; set; }
  30. /// <summary>
  31. /// cache1weight
  32. /// </summary>
  33. [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
  34. public string cache1weight { get; set; }
  35. /// <summary>
  36. /// robot
  37. /// </summary>
  38. [SugarColumn(ColumnDataType = "varchar", Length = 100, IsNullable = true)]
  39. public string robot { get; set; }
  40. /// <summary>
  41. /// taskflag
  42. /// </summary>
  43. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  44. public int? taskflag { get; set; }
  45. /// <summary>
  46. /// cache2state
  47. /// </summary>
  48. [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
  49. public string cache2state { get; set; }
  50. /// <summary>
  51. /// cache2task
  52. /// </summary>
  53. [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = true)]
  54. public string cache2task { get; set; }
  55. }
  56. }