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.
24 lines
425 B
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);
|
|
|
|
}
|
|
|