17 lines
357 B
Objective-C
17 lines
357 B
Objective-C
//
|
|
// JingYanValueViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/1.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "JingYanValuelist.h"
|
|
@interface JingYanValueViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *getExplabel;
|
|
|
|
-(void)loadCellWithJingYan:(JingYanValuelist *)model;
|
|
|
|
@end
|