CustomerBalanceSearchCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // CustomerBalanceSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/24.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:客户往来余额查询条件单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SideSlipBaseTableViewCell.h"
  12. @interface CustomerBalanceSearchCell : SideSlipBaseTableViewCell
  13. /**
  14. 业务部门
  15. */
  16. @property (strong,nonatomic) IBOutlet UIButton *btnOrg;
  17. /**
  18. 业务员
  19. */
  20. @property (strong,nonatomic) IBOutlet UIButton *btnStaff;
  21. /**
  22. 汇总类型
  23. */
  24. @property (strong,nonatomic) IBOutlet UIButton *btnSummaryType;
  25. /**
  26. 汇总类型
  27. */
  28. @property (copy, nonatomic) NSString *sSummaryType;
  29. /**
  30. 业务部门
  31. */
  32. @property (copy, nonatomic) NSString *sOrg;
  33. /**
  34. 业务员
  35. */
  36. @property (copy, nonatomic) NSString *sStaff;
  37. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  38. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
  39. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  40. @property (strong, nonatomic) IBOutlet UIButton *btnFilter;
  41. @property (strong, nonatomic) IBOutlet UITextField *txtSecondaryStaff;
  42. @end