// // SaleInputAddAmountCell.h // HDMall // // Created by Javen on 2017/7/31. // Copyright © 2017年 上海勾芒信息科技. All rights reserved. // #import #import "SaleInputViewModel.h" @interface SaleInputAddAmountCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *labelTitle; @property (weak, nonatomic) IBOutlet UITextField *textFieldInput; @property (nonatomic, strong) HMSaleInputDetail_payments *model; @property (nonatomic, assign) BOOL isEdit; @property (nonatomic, copy) void (^blockNumberChanged)(void); - (void)configCellWithArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath; @end