| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // RepairReceiptListCell.h
- // IBOSS
- //
- // Created by apple on 16/1/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- //功能描述:维修已回执单元格类
- #import <UIKit/UIKit.h>
- #import "RepairReceiptListModel.h"
- #import "RepairReceiptFrame.h"
- @interface RepairReceiptListCell : UITableViewCell
- /**
- 回执单号
- */
- @property (strong,nonatomic) UILabel *receiptNo;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arragementNo;
- /**
- 维修单号
- */
- @property (strong,nonatomic) UILabel *repairNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- @property (strong,nonatomic) UILabel *customerAddress;
- @property (strong,nonatomic) UILabel *customerTelephone;
- /**
- 客服人员
- */
- @property (strong,nonatomic) UILabel *serviceStaffName;
- /**
- 回执日期
- */
- @property (strong,nonatomic) UILabel *receiptDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) UILabel *receiptType;
- /**
- 安排单id
- */
- @property (strong,nonatomic)NSString *arrangementId;
- /**
- 设置维修已回执frame
- @param frame <#frame description#>
- */
- - (void)parseInfoFrame:(RepairReceiptFrame*)frame;
- @end
|