// // PurchaseNoticeCell.h // XFFruit // // Created by mac on 15/8/18. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> @interface PurchaseNoticeCell : UITableViewCell @property (nonatomic,strong)UILabel *HeardLabel; @property (nonatomic,strong)UILabel *FootLabel; @property (nonatomic,strong)UIImageView *arrowView; @property (nonatomic,strong)UILabel *SpLabel; @property (nonatomic,strong)UILabel *DjLabel; @property (nonatomic,strong)UILabel *BzggLabel; @property (nonatomic,strong)UILabel *BzslLabel; @property (nonatomic,strong)UIView *subSview; @property (nonatomic, assign) BOOL isSelected; @property (nonatomic,strong)UIButton *button; @property (nonatomic,assign)BOOL isButtonhidden; @property (nonatomic,strong)UILabel *shopeName;//商品 @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; - (void)setTitleStr:(NSString *)str; @end