ImgTableViewCell.h 395 B

123456789101112131415161718
  1. //
  2. // ImgTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by lxt2016 on 16/11/29.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class AcutionHistoryModel;
  10. @interface ImgTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *pImgView;
  12. @property (nonatomic, strong) UIView *lineView;
  13. - (void)setCellWithModel:(AcutionHistoryModel *)mdeol;
  14. @end