| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // InstallUnreceiptSearchModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/29.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:安装未回执搜索模型
- #import <Foundation/Foundation.h>
- @interface InstallUnreceiptSearchModel : NSObject
- /**
- 安装单号
- */
- @property(nonatomic,strong)NSString *installationNo;
- /**
- 客户名称
- */
- @property(nonatomic,strong)NSString *customerName;
- /**
- 安排单号
- */
- @property(nonatomic,strong)NSString *arrangementNo;
- /**
- 开始日期
- */
- @property(nonatomic,strong)NSString *startDate;
- /**
- 结束日期
- */
- @property(nonatomic,strong)NSString *endDate;
- @end
|