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