GenerateOrdersTableViewCell.h 906 Bytes
//
//  GenerateOrdersTableViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/5.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "AddressModel.h"

@interface GenerateOrdersTableViewCell : UITableViewCell



@property (nonatomic,strong) AddressModel *NewModel;


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

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

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


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


/**
 *  当前的cell位置
 */
@property (nonatomic,assign) NSInteger indexNumber;


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



@end