AdditionalTableViewCell.m 767 Bytes
Newer Older
1
//
勾芒's avatar
勾芒 committed
2
//  AdditionalTableViewCell.m
3 4
//  Lighting
//
勾芒's avatar
勾芒 committed
5
//  Created by 曹云霄 on 16/5/16.
6 7 8
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

勾芒's avatar
勾芒 committed
9
#import "AdditionalTableViewCell.h"
10

勾芒's avatar
勾芒 committed
11
@implementation AdditionalTableViewCell
12 13 14 15 16 17

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

勾芒's avatar
勾芒 committed
18 19 20 21 22 23 24 25 26


#pragma mark -赋值
- (void)setModel:(TOOrderEntity *)model
{
    _model = model;
    self.isInvoiceLabe.text = _model.isBill;
    self.invoiceHeader.text = _model.billTitle;
    self.invoiceType.text = _model.billType;
勾芒's avatar
勾芒 committed
27
    self.payType.text = _model.payType;
勾芒's avatar
勾芒 committed
28 29 30 31 32 33 34
}






35 36 37 38 39 40 41
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end