EnumModel.h 454 B

1234567891011121314151617181920
  1. //
  2. // EnumModel.h
  3. // enumsort
  4. //
  5. // Created by Jack on 2017/10/26.
  6. // Copyright © 2017年 Jack. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface EnumModel : NSObject
  10. @property (nonatomic,assign) BOOL check;
  11. @property (nonatomic,assign) NSInteger value_id;
  12. @property (nonatomic,copy) NSString *value;
  13. @property (nonatomic,assign) NSInteger sort_id;
  14. - (void)setJsonValue:(NSDictionary *)json forSortId:(NSInteger)sortId;
  15. @end