1234567891011121314151617181920212223242526272829303132333435 |
- //
- // JZDataDetailModel.m
- // JIZHANG
- //
- // Created by kuxuan on 2017/10/27.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "JZDataDetailModel.h"
- @implementation JZDataDetailModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id"};
- }
- -(NSString *)description{
- // *account;
- // r *category_id;
- // *day;
- // *demo;
- // *detail_icon;
- // r *Id;
- // *name;
- // *small_icon;
- // r *type;
- NSDictionary *dic=@{
- @"account":self.account,@"category_id":self.category_id,@"day":self.day,
- @"demo":self.demo,@"detail_icon":self.detail_icon,@"Id":self.Id,
- @"name":self.name,@"small_icon":self.small_icon,@"day":self.type
- };
- return [dic description];
- }
- @end
|