| 123456789101112131415161718192021222324 |
- //
- // CustomerBalanceSearchCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/24.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface CustomerBalanceSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
- @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 (weak, nonatomic) IBOutlet UIButton *btnFilter;
- @property (copy, nonatomic) NSString *sStaff;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @end
|