// // InstallReceiptListCell.h // IBOSS // // Created by apple on 16/1/8. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved. // // 功能描述:安装已回执单元格类 #import #import "InstallReceiptListModel.h" #import "InstallReceiptedListFrame.h" @interface InstallReceiptListCell : UITableViewCell /** 回执单号 */ @property (strong,nonatomic) UILabel *receiptNo; @property (strong,nonatomic) UIButton *btnCancelReceipt; /** 安排单号 */ @property (strong,nonatomic) UILabel *arragementNo; /** 安装单号 */ @property (strong,nonatomic) UILabel *installNo; /** 客户名称 */ @property (strong,nonatomic) UILabel *customerName; @property (strong,nonatomic) UILabel *customerAddress; @property (strong,nonatomic) UILabel *customerTelephone; /** 回执日期 */ @property (strong,nonatomic) UILabel *receiptDate; /** 回执类型 */ @property (strong,nonatomic) UILabel *receiptType; /** 安装已回执模型 */ @property (strong,nonatomic) InstallReceiptListModel *installationReceiptListModel; @property(nonatomic,weak)id cancelDelegate; @property(nonatomic,assign) NSInteger index; /** 设置安装已回执frame @param frame <#frame description#> */ - (void)parseInfoFrame:(InstallReceiptedListFrame*)frame; @end