1b9e8898
王富生
提交
|
1
2
3
|
package com.zteits.oa.report.dao;
import com.github.pagehelper.PageInfo;
|
900781d3
王富生
提交
|
4
5
|
import com.zteits.oa.api.base.bean.BizResult;
import com.zteits.oa.api.dto.asraop.AsraOpDTO;
|
1b9e8898
王富生
提交
|
6
7
8
9
10
11
12
13
14
15
16
17
|
import com.zteits.oa.api.dto.asraop.param.AsraOpQueryReq;
import com.zteits.oa.report.domain.AsraOp;
public interface AsraOpDao {
/**
* 分页查询工时系统员工信息.<br/>
* @param asraOpQueryReq
* @return
* 2018年7月30日 wangfs.<br/>
*/
PageInfo<AsraOp> queryAsraOpForPage(AsraOpQueryReq asraOpQueryReq);
|
9ce77292
xiejianpeng
员工管理
|
18
|
|
900781d3
王富生
提交
|
19
20
21
22
23
24
25
|
/**
* 获取员工信息.<br/>
* @param asraOpQueryRe
* @return
* 2018年7月31日 wangfs.<br/>
*/
AsraOp queryAsraOp(AsraOpQueryReq asraOpQueryRe);
|
2f6df64b
xiejianpeng
员工管理
|
26
27
28
29
30
31
32
33
34
35
|
/**
* 根据登录工号查询员工信息
* @param
* @return
* @Author: xiejianpeng
* @Date: 2018/7/31 10:36
*
*/
AsraOp queryAsraOpByLoginCode(String loginCode);
|
1b9e8898
王富生
提交
|
36
|
}
|