| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // RepairUnReceiptInfo.m
- // IBOSS
- //
- // Created by guan hong hou on 16/4/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- //功能描述:维修未回执处理类
- #import "RepairUnReceiptInfo.h"
- #import "RepairUnReceiptModel.h"
- #import "RepairUnReceiptFrame.h"
- @implementation RepairUnReceiptInfo
- #pragma 公有函数
- /**
- 初始化
- @return <#return value description#>
- */
- - (id)init
- {
- self = [super init];
- if(self){
- _unRepairInfoArr = [[NSMutableArray alloc]init];
- }
- return self;
- }
- /**
- 解析维修未回执数组
- @param arr <#arr description#>
- */
- - (void)parseUnRepairInfoArr:(NSMutableArray *)arr
- {
- if(arr != nil)
-
- {
- [_unRepairInfoArr removeAllObjects];
- for(int i=0;i<arr.count;i++)
- {
- RepairUnReceiptModel *model = [RepairUnReceiptModel dk_modelWithDictionary:arr[i]];
- RepairUnReceiptFrame *listFrame = [RepairUnReceiptFrame new];
- [listFrame setUnRepairFrame:model];
- [_unRepairInfoArr addObject:listFrame];
-
- }
-
- }
- }
- @end
|