//// GXFProcessMaterialTableViewCell.h// XFFruit//// Created by freecui on 15/9/4.// Copyright (c) 2015年 Xummer. All rights reserved.//#import <UIKit/UIKit.h>#import "GXFProcessMaterial.h"@interfaceGXFProcessMaterialTableViewCell:UITableViewCell@property(nonatomic,strong)UIImageView*smallImageView;@property(nonatomic,strong)UIButton*editBtn;@property(nonatomic,strong)UILabel*seqLabel;@property(nonatomic,strong)UILabel*lineLabel;@property(nonatomic,strong)UIView*showView;-(instancetype)initWithStyle:(UITableViewCellStyle)stylereuseIdentifier:(NSString*)reuseIdentifierprocessMaterial:(GXFProcessMaterial*)processMaterial;@end@interfaceGXFProcessMaterialTableViewCell(Configure)-(void)updateWithProcessMaterial:(GXFProcessMaterial*)processMaterial;@end