fjSysConfig.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using WCS.WorkEngineering.Systems;
  8. namespace WCS.WorkEngineering.Model.WMS
  9. {
  10. /// <summary>
  11. /// 配置信息表
  12. /// </summary>
  13. [Tenant("fj")]
  14. [SugarTable("sys_config", "配置信息表")]
  15. public class fjSysConfig : BaseModel
  16. {
  17. /// <summary>
  18. /// 编号
  19. /// </summary>
  20. [SugarColumn(ColumnName = "code", Length = 100)]
  21. public string Code { get; set; }
  22. /// <summary>
  23. /// 名称
  24. /// </summary>
  25. [SugarColumn(ColumnName = "name", Length = 100)]
  26. public string Name { get; set; }
  27. /// <summary>
  28. /// 内容
  29. /// </summary>
  30. [SugarColumn(ColumnName = "scontent", Length = 100)]
  31. public string SContent { get; set; }
  32. /// <summary>
  33. /// 类型
  34. /// </summary>
  35. [SugarColumn(ColumnName = "stype", Length = 50)]
  36. public string SType { get; set; }
  37. [SugarColumn(ColumnName = "default1", Length = 100, IsNullable = true)]
  38. public string Default1 { get; set; }
  39. [SugarColumn(ColumnName = "default2", Length = 100, IsNullable = true)]
  40. public string Default2 { get; set; }
  41. [SugarColumn(ColumnName = "default3", Length = 100, IsNullable = true)]
  42. public string Default3 { get; set; }
  43. }
  44. }