// // PurchaseCell.h // XFFruit // // Created by 陈俊俊 on 15/8/23. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> #import "PurchaseBill.h" @interface PurchaseCell : UITableViewCell @property (nonatomic,strong)UILabel *billNumberLabel;//采购单号 @property (nonatomic,strong)UILabel *noticeNumberLabel;//采购通知单号 @property (nonatomic,strong)UILabel *vendorLabel;//供应商 @property (nonatomic,strong)UILabel *createOperNameLabel;//创建人 @property (nonatomic,strong)UILabel *createTimeLabel;//创建时间 @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UIButton *stateBtn; @property (nonatomic,strong)PurchaseBill *purchaseBill; @end