//// TransferCell.h// XFFruit//// Created by 陈俊俊 on 15/9/28.// Copyright (c) 2015年 Xummer. All rights reserved.//#import <UIKit/UIKit.h>#import "Transfer.h"@interfaceTransferCell:UITableViewCell@property(nonatomic,strong)UILabel*billNumberLabel;//单号@property(nonatomic,strong)UILabel*warehouseLabel;//发货仓库@property(nonatomic,strong)UILabel*rwarehouseLabel;//收货仓库@property(nonatomic,strong)UILabel*carnumberLabel;//车辆@property(nonatomic,strong)UILabel*createOperNameLabel;//创建人@property(nonatomic,strong)UILabel*createTimeLabel;//创建时间@property(nonatomic,strong)UILabel*lineLabel;@property(nonatomic,strong)UIButton*stateBtn;@property(nonatomic,strong)Transfer*transfer;@end