DeliveryUnReceiptSearchModel.h 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // DeliveryUnReceiptSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/8/28.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:配送未回执搜索模型
  9. #import <Foundation/Foundation.h>
  10. @interface DeliveryUnReceiptSearchModel : NSObject
  11. /**
  12. 客户名称
  13. */
  14. @property(nonatomic,strong)NSString *customerName;
  15. @property(nonatomic,strong)NSString *customerAddress;
  16. /**
  17. 配送单号
  18. */
  19. @property(nonatomic,strong)NSString *deliveryNo;
  20. /**
  21. 安排单号
  22. */
  23. @property(nonatomic,strong)NSString *arrangementNo;
  24. /**
  25. 开始日期
  26. */
  27. @property(nonatomic,strong)NSString *startDate;
  28. /**
  29. 结束日期
  30. */
  31. @property(nonatomic,strong)NSString *endDate;
  32. @end