GenerateOrdersTableViewCell.h 906 Bytes
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
//
//  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