| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // SingleProfitAnalyzeListSearchCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/4/11.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "BRDatePickerView.h"
- #import "DateFormat.h"
- #import "UIColor+hexColor.h"
- #import "SideSlipConfig.h"
- #import "CustomerReportTextProtocol.h"
- #import "SingleProfitAnalyseSearchModel.h"
- @interface SingleProfitAnalyzeListSearchCell : SideSlipBaseTableViewCell<CustomerReportTextProtocol>
- @property (strong, nonatomic) IBOutlet UIButton *btnDepartment;
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- @property (strong, nonatomic) IBOutlet UIButton *btnBusinessType;
- @property (strong,nonatomic) SideSlipModel *regionModel;
- @property (strong,nonatomic) BRDatePickerView *dealDatePicker;
- @property (copy, nonatomic) NSString *organizationCode;
- /**
- 开始日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnSalesSlip;
- @property (copy, nonatomic) NSString *sAccountStartDate;
- /**
- 结束日期
- */
- @property (strong, nonatomic) IBOutlet UIButton *btnSalesOrder;
- @property (copy, nonatomic) NSString *sAccountEndDate;
- /**
- 开始日期
- */
- @property (copy, nonatomic) NSString *tempAccountStartDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *tempAccountEndDate;
- /**
- 存储选择的排序方式
- */
- @property (copy, nonatomic) UIButton *selectLable;
- @end
|