You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
745 B
38 lines
745 B
package com.nov.KgLowDurable.service; |
|
|
|
|
|
import com.nov.KgLowDurable.pojo.entity.Tuser; |
|
import com.nov.KgLowDurable.pojo.vo.ApproverUser; |
|
import com.nov.KgLowDurable.pojo.vo.UserInfoVO; |
|
|
|
import java.util.List; |
|
|
|
/** |
|
* 用户 |
|
* |
|
* @author Chill |
|
*/ |
|
public interface IUserInfoService { |
|
|
|
/** |
|
* 获取用户信息 |
|
* @return |
|
*/ |
|
UserInfoVO getUserInfo() throws Exception; |
|
|
|
/** |
|
* 获取审批人 |
|
* @param mainErDepartment |
|
* @param type |
|
* @param ldOnePutStorageId |
|
* @return |
|
*/ |
|
boolean getApprover(String mainErDepartment, String type,Long ldOnePutStorageId); |
|
|
|
/** |
|
* 获取部门负责人 |
|
* @param department |
|
* @return |
|
*/ |
|
Tuser getDeptApprove(String department); |
|
}
|
|
|