AsraOpRelationsDTO.java 966 Bytes
package com.zteits.oa.api.dto.asraoprelations;

import com.zteits.oa.api.base.bean.BaiscDTO;

public class AsraOpRelationsDTO  extends BaiscDTO {

    /**父级ID*/
    private Long parentId;

    /**员工ID*/
    private Long opId;

    /**数据状态:1有效,0无效,2:锁定*/
    private Integer dataState;

    /**获取父级ID*/
    public Long getParentId() {
        return parentId;
    }

    /**设置父级ID*/
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }

    /**获取员工ID*/
    public Long getOpId() {
        return opId;
    }

    /**设置员工ID*/
    public void setOpId(Long opId) {
        this.opId = opId;
    }

    /**获取数据状态:1有效,0无效,2:锁定*/
    public Integer getDataState() {
        return dataState;
    }

    /**设置数据状态:1有效,0无效,2:锁定*/
    public void setDataState(Integer dataState) {
        this.dataState = dataState;
    }
}