1.添加手机号和身份证的安全性和保密性
2.添加对应的定时任务
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -16,4 +16,6 @@ import java.util.List;
|
||||
public interface EmployeeConfirmMapper extends BaseMapper<EmployeeConfirm> {
|
||||
|
||||
List<EmployeeConfirm> getEmployeeConfirmList(EmployeeConfirm employeeConfirm);
|
||||
|
||||
void updatePhoneEncrypt(List<EmployeeConfirm> list);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user