admin
2023-04-21 0b3a4aaf99ea251bc8e27b96115288f0988fcffe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  findGoodsTableViewCell.h
//  BuWanVideo2.0
//
//  Created by apple on 16/12/30.
//  Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface findGoodsTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *finderCellImageView;//商品图片
@property (weak, nonatomic) IBOutlet UILabel *goodsName;//商品名称
@property (weak, nonatomic) IBOutlet UILabel *goodsPrice;//商品价格
@property (weak, nonatomic) IBOutlet UIImageView *userIcon;//推荐用户的头像
@property (weak, nonatomic) IBOutlet UILabel *userName;//推荐用户的名称
@property (weak, nonatomic) IBOutlet UILabel *content;//推荐理由的视图
@property (weak, nonatomic) IBOutlet UIButton *collectionBtn;//收藏按钮
@property (weak, nonatomic) IBOutlet UIButton *commitBtn;//查看评论按钮
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *userNameLength;//用于设置用户名的长度
 
@end