12345678910111213141516171819 |
- //
- // SuperModel.h
- // YDCoolNew
- //
- // Created by huangxiaodong.xiaoyou on 2018/7/3.
- // Copyright © 2018年 huangxiaodong.xiaoyou. All rights reserved.
- //
- #import "JSONModel.h"
- @interface SuperModel : JSONModel
- @property(nonatomic,copy) NSString* msg;//描述信息
- @property(nonatomic,assign) NSInteger status; //错误码
- //文件中心的
- @property(nonatomic,assign) NSInteger code; //
- @end
|