// // SaleInputListTableViewCell.h // RealEstateManagement // // Created by Javen on 2016/11/2. // Copyright © 2016年 上海勾芒信息科技. All rights reserved. // #import <UIKit/UIKit.h>
#import "HMSaleInputDetail.h"
@interface SaleInputListTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *labelTItle; @property (weak, nonatomic) IBOutlet UILabel *labelBillCount; @property (weak, nonatomic) IBOutlet UILabel *labelTime; @property (weak, nonatomic) IBOutlet UILabel *labelBillNumber;
@property (nonatomic, strong) HMSaleInputDetail *model;
@property (weak, nonatomic) IBOutlet UIImageView *imgState; - (void)configCellWithArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath; @end