| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- //
- // RequirementReceiptFrame.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RequirementReceiptModel.h"
- @interface RequirementReceiptFrame : NSObject
- /**
- 配送已回执列表model
- */
- @property (strong,nonatomic)RequirementReceiptModel *deliveryListModel;
- /**
- 设置配送已回执列表frame
- @return <#return value description#>
- */
- - (void)setReceiptedListFrame:(RequirementReceiptModel *)deliveryListModel;
- /**
- 回执单号title frame
- */
- @property (nonatomic, assign)CGRect lblReceiptNoF;
- @property (nonatomic, assign)CGRect separatorF;
- /**
- 安排单号title frame
- */
- @property (nonatomic, assign)CGRect lblArrangementNoF;
- /**
- 配送单号title frame
- */
- @property (nonatomic, assign)CGRect lblDeliveryNoF;
- /**
- 客户名称title frame
- */
- @property (nonatomic, assign)CGRect lblCustomerNameF;
- /**
- 回执日期title frame
- */
- @property (nonatomic, assign)CGRect lblReceiptDateF;
- /**
- 客户地址title frame
- */
- @property (nonatomic, assign)CGRect lblCustomerAddressF;
- /**
- 回执状态title frame
- */
- @property (nonatomic, assign)CGRect lblReceiptStatusF;
- /**
- 回执单号frame
- */
- @property (nonatomic, assign)CGRect receiptNoF;
- /**
- 安排单号frame
- */
- @property (nonatomic, assign)CGRect arrangementNoF;
- /**
- 配送单号frame
- */
- @property (nonatomic, assign)CGRect deliveryNoF;
- /**
- 客户名称frame
- */
- @property (nonatomic, assign)CGRect customerNameF;
- /**
- 回执日期frame
- */
- @property (nonatomic, assign)CGRect receiptDateF;
- /**
- 客户地址frame
- */
- @property (nonatomic, assign)CGRect customerAddressF;
- /**
- 回执状态frame
- */
- @property (nonatomic, assign)CGRect receiptStatusF;
- /**
- cell高度
- */
- @property (nonatomic, assign)NSUInteger cellHeight;
- /**
- 撤销回执
- */
- @property (nonatomic, assign)CGRect lblReceiptStateFrame;
- /**
- 底部line
- */
- @property (nonatomic, assign)CGRect bottomLineF;
- /**
- 撤销回执
- */
- @property (nonatomic, assign)CGRect returnReceiptF;
- @end
|