SysConfig.cs 1011 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.hj
  6. {
  7. [Tenant("hj")]
  8. [SugarTable("sys_config")]
  9. public partial 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. }
  26. }