ScienceachievementsCell.h 920 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ScienceachievementsCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/12.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AchievementslistModel.h"
  10. @interface ScienceachievementsCell : UITableViewCell
  11. @property(copy,nonatomic)UIImageView *image;//专利类型图片
  12. @property(copy,nonatomic)UILabel *typelabel;//专利类型
  13. @property(copy,nonatomic)UILabel *title;//标题
  14. @property(copy,nonatomic)UIImageView *boutiqueimage;//精品图片
  15. @property(copy,nonatomic)UILabel *content;//内容
  16. @property(copy,nonatomic)UILabel *place;//地点
  17. @property(copy,nonatomic)UILabel *applyapplication1;//适用领域
  18. @property(copy,nonatomic)UILabel *applyapplication2;//适用领域
  19. @property(copy,nonatomic)UIImageView *followimage;//关注图片
  20. @property(copy,nonatomic)UILabel *follownumber;//关注数
  21. - (void)assignment:(AchievementslistModel *)model;
  22. @end