package com.cloud.user.vo;
|
|
import com.cloud.common.utils.BeanUtil;
|
import com.cloud.model.sys.BbEmployeeRelation;
|
|
import java.util.List;
|
|
/**
|
* 人员关系表VO
|
*/
|
public class BbEmployeeRelationVO extends BbEmployeeRelation {
|
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 得到BbEmployeeRelationVO类型的对象
|
*/
|
public static BbEmployeeRelationVO getBeanVO(BbEmployeeRelation bean) {
|
return BeanUtil.copy(BbEmployeeRelationVO.class, bean);
|
}
|
|
/**
|
* 得到BbEmployeeRelation类型的对象
|
*/
|
public static BbEmployeeRelation getBean(BbEmployeeRelationVO beanVO) {
|
return BeanUtil.copy(BbEmployeeRelationVO.class, beanVO);
|
}
|
|
}
|