RequirementReceiptSearchModel.h 526 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RequirementReceiptSearchModel.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RequirementReceiptSearchModel : NSObject
  10. /**
  11. 送货单号
  12. */
  13. @property(nonatomic,strong)NSString *deliveryNo;
  14. /**
  15. 回执类型
  16. */
  17. @property(nonatomic,strong)NSString *receiptType;
  18. /**
  19. 开始日期
  20. */
  21. @property(nonatomic,strong)NSString *startDate;
  22. /**
  23. 结束日期
  24. */
  25. @property(nonatomic,strong)NSString *endDate;
  26. @end