| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- //
- // ReceiptedListFrame.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送已回执列表frame
- #import <Foundation/Foundation.h>
- #import "DeliveryListModel.h"
- @interface ReceiptedListFrame : NSObject
- /**
- 配送已回执列表model
- */
- @property (strong,nonatomic)DeliveryListModel *deliveryListModel;
- /**
- 设置配送已回执列表frame
- @return <#return value description#>
- */
- - (void)setReceiptedListFrame:(DeliveryListModel *)deliveryListModel;
- /**
- 回执单号title frame
- */
- @property (nonatomic, assign)CGRect lblReceiptNoF;
- @property (nonatomic, assign)CGRect btnCancelReceiptF;
- @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;
- @property (nonatomic, assign)CGRect lblCustomerTelephoneF;
- /**
- 回执状态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;
- @property (nonatomic, assign)CGRect customerTelephoneF;
- /**
- 回执状态frame
- */
- @property (nonatomic, assign)CGRect receiptStatusF;
- /**
- cell高度
- */
- @property (nonatomic, assign)NSUInteger cellHeight;
- @end
|