UnReceiptInfo.h 484 B

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