| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // RequirementNoReceiptSearchModel.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface DispatchNoReceiptSearchModel : NSObject
- /**
- 客户名称
- */
- @property(nonatomic,strong)NSString *customerName;
- /**
- 配送单号
- */
- @property(nonatomic,strong)NSString *customerTelephone;
- /**
- 安排单号
- */
- @property(nonatomic,strong)NSString *arrangementNo;
- /**
- 开始日期
- */
- @property(nonatomic,strong)NSString *startDate;
- /**
- 结束日期
- */
- @property(nonatomic,strong)NSString *endDate;
- @end
|