| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // RepairUnReceiptCell.h
- // IBOSS
- //
- // Created by guan hong hou on 16/4/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- //功能描述:维修未回执单元格类
- #import <UIKit/UIKit.h>
- #import "RepairUnReceiptFrame.h"
- @interface RepairUnReceiptCell : UITableViewCell
- /**
- 维修单号
- */
- @property (strong,nonatomic) UILabel *repairNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- /**
- 电话
- */
- @property (strong,nonatomic) UILabel *telephone;
- /**
- 客户地址
- */
- @property (strong,nonatomic) UILabel *customerAddress;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 维修日期
- */
- @property (strong,nonatomic) UILabel *repairDate;
- @property (strong,nonatomic) UILabel *lblDepartment;
- @property (strong,nonatomic) UILabel *lblStaff;
- @property (strong,nonatomic) UILabel *lblQuestionDesc;
- /**
- 设置维修未回执frame
- @param datas <#datas description#>
- */
- - (void)setUnRepairInfoFrame:(RepairUnReceiptFrame *)datas;
- @end
|