23 lines
572 B
Objective-C
23 lines
572 B
Objective-C
//
|
|
// ShopDetailCodeFirstCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/19.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishShopInfo.h"
|
|
@interface ShopDetailCodeFirstCell : UITableViewCell
|
|
@property(nonatomic,strong) UIImageView *shopImg;
|
|
|
|
@property(nonatomic,strong) UILabel *nYear;
|
|
@property(nonatomic,strong) UILabel *vRenZheng;
|
|
@property(nonatomic,strong)UILabel *province;
|
|
@property(nonatomic,strong)UILabel *shopUser;
|
|
@property(nonatomic,strong)UILabel *ShopName;
|
|
|
|
-(void)loadDataWith:(IfishShopInfo *)info;
|
|
|
|
@end
|