| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // RequirementReceiptCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RequirementReceiptModel.h"
- #import "RequirementReceiptFrame.h"
- @protocol RequirementReceiptCellDelegate <NSObject>
- @optional
- - (void)showReturnReceipt:(RequirementReceiptModel*) model;
- @end
- @interface RequirementReceiptCell : UITableViewCell
- /**
- 回执单号
- */
- @property (strong,nonatomic) UILabel *receiptNo;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 配送单号
- */
- @property (strong,nonatomic) UILabel *deliveryNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- /**
- 回执日期
- */
- @property (strong,nonatomic) UILabel *receiptDate;
- /**
- 回执状态
- */
- @property (strong,nonatomic) UILabel *receiptStatus;
- @property (strong,nonatomic) id<RequirementReceiptCellDelegate> delegate ;
- /**
- 配送已回执model
- */
- @property (strong,nonatomic) RequirementReceiptModel *deliveryListModel;
- /**
- 加载已回执列表ui
- @param frame <#frame description#>
- */
- - (void)setReceiptedListFrame:(RequirementReceiptFrame *) frame;
- @end
|