County.cs 322 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Winsoft.GOV.Framework.Model
  6. {
  7. public enum County
  8. {
  9. LS = 0,
  10. LD,
  11. LQ,
  12. QT,
  13. YH,
  14. QY,
  15. JY,
  16. SC,
  17. SY,
  18. JN,
  19. KFQ
  20. }
  21. }