DispatchNoReceiptSearchModel.h 612 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // RequirementNoReceiptSearchModel.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 DispatchNoReceiptSearchModel : NSObject
  10. /**
  11. 客户名称
  12. */
  13. @property(nonatomic,strong)NSString *customerName;
  14. /**
  15. 配送单号
  16. */
  17. @property(nonatomic,strong)NSString *customerTelephone;
  18. /**
  19. 安排单号
  20. */
  21. @property(nonatomic,strong)NSString *arrangementNo;
  22. /**
  23. 开始日期
  24. */
  25. @property(nonatomic,strong)NSString *startDate;
  26. /**
  27. 结束日期
  28. */
  29. @property(nonatomic,strong)NSString *endDate;
  30. @end