// // TypeViewCell.h // IBOSS // // Created by Dongke on 16/1/20. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved. // 功能描述:收款方式列表单元格 #import #import "PayTypeModel.h" @interface TypeViewCell : UITableViewCell /** 收款方式id */ @property (assign,nonatomic) NSString *settlementTypeId; /** 收款名称 */ @property (strong,nonatomic) IBOutlet UILabel *receivableName; /** 收款金额 */ @property (strong,nonatomic) IBOutlet UILabel *receivables; /** 是否手工费 */ @property (strong,nonatomic) IBOutlet UILabel *isNotHand; /** 手工费 */ @property (strong,nonatomic) IBOutlet UILabel *handAmount; /** 备注 */ @property (strong,nonatomic) IBOutlet UILabel *remark; /** 设置单元格数据 @param model <#model description#> */ - (void)parseInfoModel:(PayTypeModel*)model; @end