| 123456789101112131415161718192021222324 |
- //
- // SingleProfitSearchCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/19.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "DateFormat.h"
- @interface SingleProfitSearchCell : SideSlipBaseTableViewCell
- @property (strong, nonatomic) IBOutlet UIButton *btnOrg;
- @property (strong, nonatomic) IBOutlet UIButton *btnStaff;
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- @property (copy, nonatomic) NSString *sStartDate;
- @property (copy, nonatomic) NSString *sEndDate;
- @property (copy, nonatomic) NSString *sOrg;
- @property (copy, nonatomic) NSString *sStaff;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
- @end
|