嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/service/HighCompanyTwoPwdService.java

24 lines
425 B

package com.hai.service;
import com.hai.entity.HighCompanyTwoPwd;
/**
* 公司二级密码
* @author hurui
*/
public interface HighCompanyTwoPwdService {
/**
* 编辑二级密码
* @param companyTwoPwd
*/
void editData(HighCompanyTwoPwd companyTwoPwd);
/**
* 根据部门查询二级密码
* @param orgId
* @return
*/
HighCompanyTwoPwd getTwoPwdByOrg(Long orgId);
}