| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // DeliveryUnReceiptSearchModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/28.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:配送未回执搜索模型
- #import <Foundation/Foundation.h>
- @interface DeliveryUnReceiptSearchModel : NSObject
- /**
- 客户名称
- */
- @property(nonatomic,strong)NSString *customerName;
- @property(nonatomic,strong)NSString *customerAddress;
- /**
- 配送单号
- */
- @property(nonatomic,strong)NSString *deliveryNo;
- /**
- 安排单号
- */
- @property(nonatomic,strong)NSString *arrangementNo;
- /**
- 开始日期
- */
- @property(nonatomic,strong)NSString *startDate;
- /**
- 结束日期
- */
- @property(nonatomic,strong)NSString *endDate;
- @end
|