12345678910111213141516171819202122232425262728 |
- //
- // JZPlusModel.h
- // JIZHANG
- //
- // Created by xiaoxi on 2017/10/19.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface JZPlusModel : NSObject
- @property (nonatomic, strong) NSNumber *Id;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, copy) NSString *icon;
- @property (nonatomic, copy) NSString *detail_icon;
- /**
- 1 收入 2 支出
- */
- @property (nonatomic, copy) NSString *type;
- /**
- 1 系统 2 自定义
- //返回1 系统 2 系统移除 3 自定义
- */
- @property (nonatomic, copy) NSString *category_type;
- @end
|