InstallUnreceiptSearchModel.h 657 B

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