1.添加手机号和身份证的安全性和保密性

2.添加对应的定时任务
This commit is contained in:
sh
2026-03-19 17:26:28 +08:00
parent e61cdafa9d
commit bbb106489e
40 changed files with 1321 additions and 52 deletions

View File

@@ -38,4 +38,10 @@ public interface AppUserMapper extends BaseMapper<AppUser>
SysUser selectSysUserIdcard(@Param("idCard") String idCard);
List<AppUserShow> selectUserApplyList(AppUser appUser);
void batchUpdateIdCardAndPhone(List<AppUser> list);
List<SysUser> getSysUserListEncrypt();
void batchUpdateSysUserEncrypt(List<SysUser> list);
}

View File

@@ -35,4 +35,8 @@ public interface CompanyMapper extends BaseMapper<Company>
public Company selectByCode(@Param("code") String code);
List<Company> selectBycodes(List<String> list);
List<Company> selectCompanyEncryptList(Company company);
void batchUpdateEncrypt(List<Company> list);
}

View File

@@ -16,4 +16,6 @@ import java.util.List;
public interface EmployeeConfirmMapper extends BaseMapper<EmployeeConfirm> {
List<EmployeeConfirm> getEmployeeConfirmList(EmployeeConfirm employeeConfirm);
void updatePhoneEncrypt(List<EmployeeConfirm> list);
}

View File

@@ -20,4 +20,6 @@ public interface JobContactMapper extends BaseMapper<JobContact> {
int batchInsert(List<JobContact> list);
List<JobContact> selectByJobIds(@Param("jobIds") List<Long> longs);
void batchUpdateEncrypt(List<JobContact> list);
}