Blame view

src/main/java/com/zteits/oa/report/dao/AsraOpRelationsDao.java 735 Bytes
2f6df64b   xiejianpeng   员工管理
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.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);
  }