SaleInputListTableViewCell.h 736 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  SaleInputListTableViewCell.h
//  RealEstateManagement
//
//  Created by Javen on 2016/11/2.
//  Copyright © 2016年 上海勾芒信息科技. All rights reserved.
//

#import <UIKit/UIKit.h>
10
#import "HMSaleInputDetail.h"
11 12 13 14 15
@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;
16
@property (nonatomic, strong) HMSaleInputDetail *model;
17 18 19 20 21
@property (weak, nonatomic) IBOutlet UIImageView *imgState;


- (void)configCellWithArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath;
@end