PurchaseNoticeCell.h 1.44 KB
Newer Older
朱朝吉's avatar
朱朝吉 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  PurchaseNoticeCell.h
//  XFFruit
//
//  Created by mac on 15/8/18.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface PurchaseNoticeCell : UITableViewCell
zhu's avatar
zhu committed
12 13
@property (nonatomic,strong)UILabel *HeardLabel;
@property (nonatomic,strong)UILabel *FootLabel;
zhu's avatar
zhu committed
14
@property (nonatomic,strong)UIImageView *arrowView;
朱朝吉's avatar
朱朝吉 committed
15 16 17 18
@property (nonatomic,strong)UILabel *SpLabel;
@property (nonatomic,strong)UILabel *DjLabel;
@property (nonatomic,strong)UILabel *BzggLabel;
@property (nonatomic,strong)UILabel *BzslLabel;
zhu's avatar
zhu committed
19 20 21
@property (nonatomic,strong)UIView *subSview;
@property (nonatomic, assign) BOOL isSelected;
@property (nonatomic,strong)UIButton *button;
zhu's avatar
zhu committed
22
@property (nonatomic,assign)BOOL isButtonhidden;
zhu's avatar
zhu committed
23
@property (nonatomic,strong)UILabel *shopeName;//商品
zhu's avatar
zhu committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
@property (nonatomic,strong)UILabel *packageSpecification;//包装规格
@property (nonatomic,strong)UILabel *packageQuantity;//包装数量
@property (nonatomic,strong)UILabel *packageUnit;//包装单位
@property (nonatomic,strong)UILabel *foundationQuantity;//基础数量

@property (nonatomic,strong)UILabel *foundationUnitPrice;//基础单价
@property (nonatomic,strong)UILabel *packageUnitPrice;//包装单价
@property (nonatomic,strong)UILabel *totalMoney;//总金额
@property (nonatomic,strong)UILabel *remark;//备注
@property (nonatomic,strong)NSArray *shopDetailAry1;
@property (nonatomic,strong)NSArray *shopDetailAry2;




朱朝吉's avatar
朱朝吉 committed
39 40 41 42


- (void)setTitleStr:(NSString *)str;
@end