| 123456789101112131415161718192021222324252627282930313233 |
- //
- // IntermediateCustomerModel.m
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/1.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "GradeModel.h"
- @implementation GradeModel
- -(void)parseDic:(NSDictionary *)dic{
- _gradeId= [[dic objectForKey:@"GradeID"]integerValue];
- _gradeName=[dic objectForKey:@"GradeName"];
- _isCheckedStatus=YES;
- }
- - (id)copyWithZone:(nullable NSZone *)zone{
- GradeModel *gModel = [[self class] allocWithZone:zone];
- gModel.gradeId=_gradeId;
- gModel.gradeName=_gradeName;
- gModel.isCheckedStatus=_isCheckedStatus;
- return gModel;
- }
- - (id)mutableCopyWithZone:(nullable NSZone *)zone{
- GradeModel *gModel = [[self class] allocWithZone:zone];
- gModel.gradeId=_gradeId;
- gModel.gradeName=_gradeName;
- gModel.isCheckedStatus=_isCheckedStatus;
- return gModel;
- }
- @end
|