| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // SingleProfitSearchModel.h
- // IBOSS
- //
- // Created by apple on 2017/5/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:每单利润表查询model
- //
- #import <Foundation/Foundation.h>
- #define SINGLE_PROFIT_SEARCH_RANGE_MODEL @"SINGLE_PROFIT_SEARCH_RANGE_MODEL"
- @interface SingleProfitSearchModel : NSObject
- /**
- 开始日期
- */
- @property (copy, nonatomic) NSString *sStartDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *sEndDate;
- /**
- 业务部门
- */
- @property (copy, nonatomic) NSString *sOrg;
- /**
- 业务员
- */
- @property (copy, nonatomic) NSString *sStaff;
- /**
- 客户名称
- */
- @property (copy, nonatomic) NSString *sCustomerName;
- @property(nonatomic,strong)NSString *sCustomerCode;
- @property(nonatomic,strong) NSString *sBusinessType;
- @property(nonatomic,strong)NSString *sCustomerAddress;
- @end
|