| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // CustomerBalanceSearchModel.h
- // IBOSS
- //
- // Created by apple on 2017/5/24.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:客户往来余额查询条件model
- //
- #import <Foundation/Foundation.h>
- #define CUSTOMER_BALANCE_SEARCH_RANGE_MODEL @"CUSTOMER_BALANCE_SEARCH_RANGE_MODEL"
- @interface CustomerBalanceSearchModel : NSObject
- /**
- 业务部门
- */
- @property (copy, nonatomic) NSString *sOrg;
- /**
- 业务员
- */
- @property (copy, nonatomic) NSString *sStaff;
- /**
- 汇总类型
- */
- @property (copy, nonatomic) NSString *sSummaryType;
- @property(nonatomic,strong) NSString *sCustomerCode;
- @property(nonatomic,strong) NSString *sCustomerName;
- @property(nonatomic,strong) NSString *sCustomerAddress;
- @property(nonatomic,strong) NSString *filter;
- @property(nonatomic,strong) NSString *sSecondaryStaff;
- @end
|