RAModel.h 726 B

1234567891011121314151617181920
  1. //
  2. // RAModel.h
  3. // RedAnt Mobile
  4. //
  5. // Created by Jack on 2017/10/31.
  6. // Copyright © 2017年 Ray. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RAModel : NSObject
  10. @property (nonatomic,copy) NSString *name;///<显示名字
  11. @property (nonatomic,copy) NSString *type;///<模型类型
  12. @property (nonatomic,assign) NSNumber *query_id;///<查询Id,服务器预先设定好的查询
  13. @property (nonatomic,copy) NSString *url;///<查询接口,通过本地设置查询条件和查询元组
  14. @property (nonatomic,copy) NSString *module;///<本地功能类型
  15. @property (nonatomic,strong) NSArray<NSDictionary *> *mode_list;///<模型列表
  16. @property (nonatomic,assign) BOOL enable;///<是否可用
  17. @end