| 1234567891011121314151617181920212223242526272829303132 |
- //
- // RequirementReceiptSearchModel.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface RequirementReceiptSearchModel : NSObject
- /**
- 送货单号
- */
- @property(nonatomic,strong)NSString *deliveryNo;
- /**
- 回执类型
- */
- @property(nonatomic,strong)NSString *receiptType;
- /**
- 开始日期
- */
- @property(nonatomic,strong)NSString *startDate;
- /**
- 结束日期
- */
- @property(nonatomic,strong)NSString *endDate;
- @end
|