| 1234567891011121314151617181920 |
- //
- // CustomerBalanceSearchModel.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/24.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #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 (copy, nonatomic) NSString *filter;
- @property (copy, nonatomic) NSString *customerCode;
- @property (copy, nonatomic) NSString *customerName;
- @end
|