| 123456789101112131415161718192021222324252627282930 |
- //
- // LogSearchTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/12.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipModel.h"
- #import "SideSlipBaseTableViewCell.h"
- #import "LogShareVC.h"
- #import "LogSearchModel.h"
- @interface LogSearchTableViewCell : SideSlipBaseTableViewCell<LogShareDelegate>
- @property(nonatomic,strong)SideSlipModel * slideModel;//抽屉共有类
- @property (strong, nonatomic) IBOutlet UIButton *createrBtn;
- @property (strong, nonatomic) IBOutlet UIButton *startDateBtn;
- @property (strong, nonatomic) IBOutlet UIButton *endDateBtn;
- @property(copy, nonatomic) NSString *startDate;//开始日期
- @property(copy, nonatomic) NSString *endDate;//结束日期
- @property(strong, nonatomic) NSString *sShareId;//创建人id
- @property(strong, nonatomic) NSString *sShareName;//创建人
- @property(strong,nonatomic)BRDatePickerView *brDatePicker;//日期控件
- @property(nonatomic,strong) NSMutableDictionary *mutDict;//日志查询信息存储字典
- @property (nonatomic,strong)LogSearchModel *searchModel;//日志查询信息对象
- @end
|