sxSysConfig.cs 1021 B

123456789101112131415161718192021222324252627
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("sys_config", "配置信息表")]
  9. public class sxSysConfig : 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. }
  26. }