EnumType.cs 375 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HH.YiDaSyncNC.Dtos.NC
  7. {
  8. public class EnumType
  9. {
  10. #region 启用/停用
  11. public enum enablestate
  12. {
  13. 未启用 = 1,
  14. 已启用 = 2,
  15. 已停用 = 3
  16. }
  17. #endregion
  18. }
  19. }