26 lines
731 B
Objective-C
26 lines
731 B
Objective-C
//
|
|
// ShopAlreadyCertifyViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/9.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CertificationShopModel.h"
|
|
|
|
@interface ShopAlreadyCertifyViewCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *shopUserIcon;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopName;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopTel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopAdderess;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *shopDetailBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *shopUserName;
|
|
@property (weak, nonatomic) IBOutlet UIButton *saomaBtn;
|
|
|
|
-(void)loadDataWith:(CertificationShopModel*)model;
|
|
@end
|