liuxiaolong
2019-05-06 f99bc8c6a1d10610373738edd7d0aa0181c81d99
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
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);
    }
 
}