| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // InstallReceiptListCell.h
- // IBOSS
- //
- // Created by apple on 16/1/8.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:安装已回执单元格类
- #import <UIKit/UIKit.h>
- #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<DialTelephoneDelegate> cancelDelegate;
- @property(nonatomic,assign) NSInteger index;
- /**
- 设置安装已回执frame
- @param frame <#frame description#>
- */
- - (void)parseInfoFrame:(InstallReceiptedListFrame*)frame;
- @end
|