| 123456789101112131415161718192021222324 |
- //
- // UnReceiptInfo.h
- // IBOSS
- //
- // Created by guan hong hou on 16/4/14.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:解析配送未回执信息类
- #import <Foundation/Foundation.h>
- @interface UnReceiptInfo : NSObject
- /**
- 未回执数组
- */
- @property (strong) NSMutableArray * unDeliveryInfoArr;
- /**
- 解析未回执数组
- @param arr <#arr description#>
- */
- - (void)parseUnDeliveryInfoArr:(NSArray *)arr;
- @end
|