| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // CustomerBalanceSearchCell.h
- // IBOSS
- //
- // Created by apple on 2017/5/24.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:客户往来余额查询条件单元格
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface CustomerBalanceSearchCell : SideSlipBaseTableViewCell
- /**
- 业务部门
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnOrg;
- /**
- 业务员
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnStaff;
- /**
- 汇总类型
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnSummaryType;
- /**
- 汇总类型
- */
- @property (copy, nonatomic) NSString *sSummaryType;
- /**
- 业务部门
- */
- @property (copy, nonatomic) NSString *sOrg;
- /**
- 业务员
- */
- @property (copy, nonatomic) NSString *sStaff;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UIButton *btnFilter;
- @property (strong, nonatomic) IBOutlet UITextField *txtSecondaryStaff;
- @end
|