WCS_MAPPINGENTRY.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using SqlSugar;
  2. namespace WCS.Entity
  3. {
  4. /// <summary>
  5. /// 枚举映射表
  6. /// </summary>
  7. [SugarTable(nameof(WCS_MAPPINGENTRY), "枚举映射表")]
  8. public class WCS_MAPPINGENTRY
  9. {
  10. /// <summary>
  11. /// ID
  12. /// </summary>
  13. [SugarColumn(IsPrimaryKey = true, ColumnDescription = "ID")]
  14. public int MEP_ID { get; set; }
  15. /// <summary>
  16. /// 编号
  17. /// </summary>
  18. [SugarColumn(ColumnDescription = "编号")]
  19. public int MEP_MAPPINGNO { get; set; }
  20. /// <summary>
  21. /// 枚举类
  22. /// </summary>
  23. [SugarColumn(Length = 50, ColumnDescription = "枚举类")]
  24. public string MEP_MAPPINGTYPE { get; set; }
  25. /// <summary>
  26. /// 枚举名称
  27. /// </summary>
  28. [SugarColumn(Length = 50, ColumnDescription = "枚举名称")]
  29. public string MEP_MAPPINGCHNAME { get; set; }
  30. /// <summary>
  31. /// 是否停用
  32. /// </summary>
  33. [SugarColumn(ColumnDescription = "是否停用")]
  34. public bool MEP_ISSTOP { get; set; }
  35. }
  36. }