//
|
// PBPersonTableViewCell.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/8/16.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBIssueAddModel;
|
@class PBExamineAddModel;
|
@interface PBPersonTableViewCell : UITableViewCell
|
@property (nonatomic, copy) void(^EditPersonBlock)(void);
|
@property (nonatomic, assign) BOOL isLabel;
|
@property (nonatomic, strong) PBIssueAddModel *issueAddModel;
|
@property (nonatomic, strong) PBExamineAddModel *examineAddModel;
|
|
@end
|