悟空记账

JZPlusModel.h 589B

12345678910111213141516171819202122232425262728
  1. //
  2. // JZPlusModel.h
  3. // JIZHANG
  4. //
  5. // Created by xiaoxi on 2017/10/19.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JZPlusModel : NSObject
  10. @property (nonatomic, strong) NSNumber *Id;
  11. @property (nonatomic, copy) NSString *name;
  12. @property (nonatomic, copy) NSString *icon;
  13. @property (nonatomic, copy) NSString *detail_icon;
  14. /**
  15. 1 收入 2 支出
  16. */
  17. @property (nonatomic, copy) NSString *type;
  18. /**
  19. 1 系统 2 自定义
  20. //返回1 系统 2 系统移除 3 自定义
  21. */
  22. @property (nonatomic, copy) NSString *category_type;
  23. @end