CostCell.h 935 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//
//  CostCell.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/7.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#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;

陈俊俊's avatar
陈俊俊 committed
21 22 23 24 25 26 27 28 29
@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;




陈俊俊's avatar
陈俊俊 committed
30 31
- (void)setFeeCost:(FeeAcountDetail *)fee row:(NSInteger)row;
@end