| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // RequirementNoReceiptCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UnReceiptListModel.h"
- #import "RequirementNoReceiptFrame.h"
- @interface RequirementNoReceiptCell : 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 *truckName;
- @property(strong,nonatomic) NSString *telephoneNumber;
- @property(nonatomic,strong)UIButton *btnDialTelephone;
- @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
- /**
- 设置配送未回执frame
- @param datas <#datas description#>
- */
- - (void)setUnReceiptListFrame:(RequirementNoReceiptFrame *)datas;
- @end
|