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

#import <UIKit/UIKit.h>
#import "TransportPdtDetail.h"
@interface TransportPurductCell : UITableViewCell
@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;
18
@property (nonatomic,strong)UILabel *shippedQtyLabel;
陈俊俊's avatar
陈俊俊 committed
19 20 21
@property (nonatomic,strong)UILabel *lineLabel;

@property (nonatomic,strong)UIView *showView;
陈俊俊's avatar
陈俊俊 committed
22
@property (nonatomic,strong)UILabel *showNameLabel;
陈俊俊's avatar
陈俊俊 committed
23 24 25 26 27 28 29
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showCountLabel;
@property (nonatomic,strong)UILabel *showBaseCountLabel;
@property (nonatomic,strong)UILabel *showPriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showNoteLabel;
@property (nonatomic,strong)UILabel *showPurchaseLabel;
30 31 32 33 34
@property (nonatomic,strong)UILabel *showShippedQty;//转运包装数量
@property (nonatomic,strong)UILabel *showShippedBaseQty;//转运基础数量



陈俊俊's avatar
陈俊俊 committed
35 36 37 38 39
@property (nonatomic,strong)NSString *rightImageName;

- (void)setPdtDetail:(TransportPdtDetail *)pdtDetail row:(NSInteger)row;
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier withImageName:(NSString *)imageName;
@end