LogSearchTableViewCell.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // LogSearchTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/12.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipModel.h"
  10. #import "SideSlipBaseTableViewCell.h"
  11. #import "LogShareVC.h"
  12. #import "LogSearchModel.h"
  13. @interface LogSearchTableViewCell : SideSlipBaseTableViewCell<LogShareDelegate>
  14. @property(nonatomic,strong)SideSlipModel * slideModel;//抽屉共有类
  15. @property (strong, nonatomic) IBOutlet UIButton *createrBtn;
  16. @property (strong, nonatomic) IBOutlet UIButton *startDateBtn;
  17. @property (strong, nonatomic) IBOutlet UIButton *endDateBtn;
  18. @property(copy, nonatomic) NSString *startDate;//开始日期
  19. @property(copy, nonatomic) NSString *endDate;//结束日期
  20. @property(strong, nonatomic) NSString *sShareId;//创建人id
  21. @property(strong, nonatomic) NSString *sShareName;//创建人
  22. @property(strong,nonatomic)BRDatePickerView *brDatePicker;//日期控件
  23. @property(nonatomic,strong) NSMutableDictionary *mutDict;//日志查询信息存储字典
  24. @property (nonatomic,strong)LogSearchModel *searchModel;//日志查询信息对象
  25. @end