// // CostCell.h // XFFruit // // Created by 陈俊俊 on 15/9/7. // Copyright (c) 2015年 Xummer. All rights reserved. // #import #import "FeeAcountDetail.h" @interface CostCell : UITableViewCell @property (nonatomic,strong)UIImageView *smallImageView; @property (nonatomic,strong)UIButton *editBtn; @property (nonatomic,strong)UILabel *seqLabel; @property (nonatomic,strong)UILabel *typeLabel; @property (nonatomic,strong)UILabel *actualLabel; @property (nonatomic,strong)UILabel *paidLabel; @property (nonatomic,strong)UILabel *leftLabel; @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UIView *showView; @property (nonatomic,strong)UILabel *showActualLabel; @property (nonatomic,strong)UILabel *showPaidLabel; @property (nonatomic,strong)UILabel *showLeftLabel; @property (nonatomic,strong)UILabel *showNote; - (void)setFeeCost:(FeeAcountDetail *)fee row:(NSInteger)row; @end