AsraOpRelationsDao.java 735 Bytes
package com.zteits.oa.report.dao;

import com.zteits.oa.report.domain.AsraOpRelations;

import java.util.List;

/**
 * Copyright: Copyright (c) 2018  zteits
 *
 * @Description:
 * @version: v1.0.0
 * @author: xiejianpeng
 * @date: 2018/7/31 11
 * Modification History:
 * Date             Author          Version            Description
 * ---------------------------------------------------------*
 * 2018/7/31      xiejianpeng         v1.0.0               创建
 */
public interface AsraOpRelationsDao {

    /**
     * 根据登录工号查询管理的员工信息
     * @param
     * @return
     * @Author: xiejianpeng
     * @Date: 2018/7/31 11:42
     *
     */
    List<AsraOpRelations> queryAsraOpRelations(Long parentId);
}