// // MaterialCell.h // XFFruit // // Created by n22 on 15/8/19. // Copyright (c) 2015年 Xummer. All rights reserved. // #import @interface MaterialCell : 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 *baseCountLabel; @property (nonatomic,strong)UILabel *dateLabel; @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