| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // OrderSalesSearchModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:订单销售单查询模型
- //
- #import <Foundation/Foundation.h>
- @interface OrderSalesSearchModel : NSObject
- /**
- id
- */
- @property (strong,nonatomic) NSString *invoiceTypeId;
- /**
- 客户名称
- */
- @property (strong,nonatomic) NSString *customerName;
- @property (strong,nonatomic) NSString *customerAddress;
- /**
- 电话
- */
- @property (strong,nonatomic) NSString *contactTelephone;
- /**
- 开始日期
- */
- @property (strong,nonatomic) NSString *startDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) NSString *endDate;
- /**
- 业务员
- */
- @property (strong,nonatomic) NSString *staffId;
- /**
- 冲正状态
- */
- @property (strong,nonatomic) NSString *correctStatus;
- @property(nonatomic,strong) NSString *departmentCode;
- @end
|