SysConfig.cs 1008 B

1234567891011121314151617181920212223242526
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Wms.Screen.SqlSugar.ZhongTian
  6. {
  7. [SugarTable("sys_config", "配置信息表")]
  8. public class SysConfig : BaseModel
  9. {
  10. [SugarColumn(ColumnName = "code", Length = 100)]
  11. public string Code { get; set; }
  12. [SugarColumn(ColumnName = "name", Length = 100)]
  13. public string Name { get; set; }
  14. [SugarColumn(ColumnName = "scontent", Length = 100)]
  15. public string SContent { get; set; }
  16. [SugarColumn(ColumnName = "stype", Length = 50)]
  17. public string SType { get; set; }
  18. [SugarColumn(ColumnName = "default1", Length = 100, IsNullable = true)]
  19. public string Default1 { get; set; }
  20. [SugarColumn(ColumnName = "default2", Length = 100, IsNullable = true)]
  21. public string Default2 { get; set; }
  22. [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]
  23. public string Default3 { get; set; }
  24. }
  25. }