ProductBillCell.h 1.06 KB
Newer Older
n22's avatar
n22 committed
1 2 3 4 5 6 7 8 9
//
//  ProductCell.h
//  XFFruit
//
//  Created by n22 on 15/8/21.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
陈俊俊's avatar
陈俊俊 committed
10 11
#import "PurchaseBillProduct.h"
@interface ProductBillCell : UITableViewCell
n22's avatar
n22 committed
12 13 14 15 16 17 18 19 20
@property (nonatomic,strong)UIImageView *smallImageView;
@property (nonatomic,strong)UIButton *editBtn;
@property (nonatomic,strong)UILabel *seqLabel;
@property (nonatomic,strong)UILabel *titleLabel;
@property (nonatomic,strong)UILabel *priceLabel;
@property (nonatomic,strong)UILabel *countLabel;
@property (nonatomic,strong)UILabel *lineLabel;

@property (nonatomic,strong)UIView *showView;
陈俊俊's avatar
陈俊俊 committed
21 22
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showCountLabel;
n22's avatar
n22 committed
23
@property (nonatomic,strong)UILabel *showBaseCountLabel;
陈俊俊's avatar
陈俊俊 committed
24 25 26 27 28 29 30
@property (nonatomic,strong)UILabel *showPriceLabel;
@property (nonatomic,strong)UILabel *showBasePriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showNoteLabel;

- (void)setBillProduct:(PurchaseBillProduct *)billProduct row:(NSInteger)row;

n22's avatar
n22 committed
31
@end