SingleProfitSearchCell.h 864 B

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