| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // UnReceiptListCell.h
- // IBOSS
- //
- // Created by guan hong hou on 16/4/14.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送未回执列表单元格
- #import <UIKit/UIKit.h>
- #import "UnReceiptListModel.h"
- #import "UnReceiptListFrame.h"
- #import "DialTelephoneDelegate.h"
- @interface UnReceiptListCell : UITableViewCell
- /**
- 配送单号
- */
- @property (strong,nonatomic) UILabel *deliveryNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- /**
- 电话
- */
- @property (strong,nonatomic) UILabel *telephone;
- /**
- 客户地址
- */
- @property (strong,nonatomic) UILabel *customerAddress;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 配送日期
- */
- @property (strong,nonatomic) UILabel *deliveryDate;
- @property (strong,nonatomic) UILabel *lblDepartment;
- @property (strong,nonatomic) UILabel *lblStaff;
- /**
- 车牌号码
- */
- @property (strong,nonatomic) UILabel *truckName;
- @property(strong,nonatomic) NSString *telephoneNumber;
- @property(nonatomic,strong)UIButton *btnDialTelephone;
- @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
- /**
- 设置配送未回执frame
- @param datas <#datas description#>
- */
- - (void)setUnReceiptListFrame:(UnReceiptListFrame *)datas;
- @end
|