| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- //
- // UnReceiptListFrame.h
- // IBOSS
- //
- // Created by guan hong hou on 16/4/14.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送未回执frame
- #import <Foundation/Foundation.h>
- #import "UnReceiptListModel.h"
- @interface UnReceiptListFrame : NSObject
- /**
- 未回执模型
- */
- @property (strong,nonatomic)UnReceiptListModel *unReceiptListModel;
- /**
- 设置未回执frame
- @param unReceiptListModel <#unReceiptListModel description#>
- */
- - (void)setUnReceiptListFrame:(UnReceiptListModel *)unReceiptListModel;
- /**
- 安排单号标题frame
- */
- @property (nonatomic, assign)CGRect lblArrangementNoF;
- @property(nonatomic,assign)CGRect btnDialTelephoneF;
- /**
- 送货单号标题frame
- */
- @property (nonatomic, assign)CGRect lblDeliveryNoF;
- /**
- 车牌号码标题frame
- */
- @property (nonatomic, assign)CGRect lblTruckNameF;
- /**
- 配送日期标题frame
- */
- @property (nonatomic, assign)CGRect lblDeliveryDateF;
- /**
- 客户名称标题frame
- */
- @property (nonatomic, assign)CGRect lblCustomerNameF;
- /**
- 客户电话标题frame
- */
- @property (nonatomic, assign)CGRect lblCustomerTelephoneF;
- /**
- 客户地址标题frame
- */
- @property (nonatomic, assign)CGRect lblCustomerAddressF;
- /**
- 安排单号frame
- */
- @property (nonatomic, assign)CGRect arrangementNoF;
- /**
- 送货单号frame
- */
- @property (nonatomic, assign)CGRect deliveryNoF;
- /**
- 车牌号码frame
- */
- @property (nonatomic, assign)CGRect truckNameF;
- /**
- 送货日期frame
- */
- @property (nonatomic, assign)CGRect deliveryDateF;
- /**
- 客户名称frame
- */
- @property (nonatomic, assign)CGRect customerNameF;
- /**
- 客户电话frame
- */
- @property (nonatomic, assign)CGRect customerTelephoneF;
- /**
- 客户地址frame
- */
- @property (nonatomic, assign)CGRect customerAddressF;
- @property (nonatomic, assign)CGRect lblOrganizationNameF;
- @property (nonatomic, assign)CGRect organizationNameF;
- @property (nonatomic, assign)CGRect lblStaffNameF;
- @property (nonatomic, assign)CGRect staffNameF;
- /**
- 分隔线frame
- */
- @property (nonatomic, assign)CGRect separatorF;
- /**
- 单元格高度
- */
- @property (nonatomic, assign)NSUInteger cellHeight;
- @end
|