// // StaffModel.m // IBOSS // // Created by guan hong hou on 2018/6/7. // Copyright © 2018年 elongtian. All rights reserved. // #import "StaffModel.h" @implementation StaffModel + (nullable NSDictionary *)modelCustomPropertyMapper{ return @{ @"staffId":@"StaffID", @"staffCode":@"StaffCode", @"staffName":@"StaffName", }; } /*! * 2. 下面的两个方法 `字典里值`与`模型的值`类型不一样`需要转换`而重写的方法 * NSDate *time dic[@"t"]是double类型的的秒数 * Dic -> model */ - (BOOL)modelCustomTransformFromDictionary:(NSDictionary *)dic { return YES; } @end