CustomerBalanceSearchCell.h 823 B

123456789101112131415161718192021222324
  1. //
  2. // CustomerBalanceSearchCell.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/24.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. @interface CustomerBalanceSearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate>
  11. @property (strong, nonatomic) IBOutlet UIButton *btnOrg;
  12. @property (strong, nonatomic) IBOutlet UIButton *btnStaff;
  13. @property (strong, nonatomic) IBOutlet UIButton *btnSummaryType;
  14. @property (copy, nonatomic) NSString *sSummaryType;
  15. @property (copy, nonatomic) NSString *sOrg;
  16. @property (weak, nonatomic) IBOutlet UIButton *btnFilter;
  17. @property (copy, nonatomic) NSString *sStaff;
  18. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
  19. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  20. @end