PrizeExchangeCourierTableViewCell.m 580 Bytes
//
//  PrizeExchangeCourierTableViewCell.m
//  Lighting
//
//  Created by 曹云霄 on 2016/11/23.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "PrizeExchangeCourierTableViewCell.h"

@implementation PrizeExchangeCourierTableViewCell

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

- (void)setBillEntity:(TOPrizeBillEntity *)billEntity
{
    _billEntity = billEntity;
    self.courierCompanyLabel.text = _billEntity.logisticsCompany;
    self.courierNumberLabel.text = _billEntity.trackingNumber;
}
@end