GenerateOrdersTableViewCell.h 906 Bytes
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9
//
//  GenerateOrdersTableViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/5.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
勾芒's avatar
勾芒 committed
10
#import "AddressModel.h"
曹云霄's avatar
曹云霄 committed
11 12 13

@interface GenerateOrdersTableViewCell : UITableViewCell

勾芒's avatar
勾芒 committed
14 15


勾芒's avatar
勾芒 committed
16
@property (nonatomic,strong) AddressModel *NewModel;
勾芒's avatar
勾芒 committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40


/**
 *  收货人姓名
 */
@property (weak, nonatomic) IBOutlet UILabel *consigneeName;

/**
 *  收货人电话
 */
@property (weak, nonatomic) IBOutlet UILabel *consigneemobile;

/**
 *  收货人地址
 */
@property (weak, nonatomic) IBOutlet UILabel *consigneeAddress;


/**
 *  是否选中
 */
@property (weak, nonatomic) IBOutlet UIButton *isSelectedButton;


勾芒's avatar
勾芒 committed
41 42 43 44 45 46 47 48 49 50 51 52 53
/**
 *  当前的cell位置
 */
@property (nonatomic,assign) NSInteger indexNumber;


/**
 *  反传回控制器.cell位置
 */
@property (nonatomic,copy) void(^blockSeletced)(NSInteger index);



曹云霄's avatar
曹云霄 committed
54
@end