SpecifiedTableViewCell.m 483 Bytes
//
//  SpecifiedTableViewCell.m
//  Lighting
//
//  Created by 曹云霄 on 2016/12/5.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "SpecifiedTableViewCell.h"

@implementation SpecifiedTableViewCell

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

- (void)setStudyEntity:(CustomStudyEntity *)studyEntity
{
    _studyEntity = studyEntity;
    self.specifiedPersonLabel.text = _studyEntity.suitabler;
}

@end