// // ProductCell.h // XFFruit // // Created by n22 on 15/8/21. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> @interface ProductCell : 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 *standardLabel; @property (nonatomic,strong)UILabel *countLabel; @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UIView *showView; @property (nonatomic,strong)UILabel *showTitleLabel; @property (nonatomic,strong)UILabel *showBaseCountLabel; @property (nonatomic,strong)UILabel *showDateLabel; @property (nonatomic,strong)UILabel *basePriceLabel; @property (nonatomic,strong)UILabel *totalPriceLabel; @property (nonatomic,strong)UILabel *placeLabel; @property (nonatomic,strong)UILabel *qualityLabel; @property (nonatomic,strong)UILabel *remarkLabel; @end