Compare commits
No commits in common. "770c30e06973f421405ead06473bf27090a65ff4" and "602c04b0f68fa42699e72d3e85a20747554a03af" have entirely different histories.
770c30e069
...
602c04b0f6
|
|
@ -53,12 +53,12 @@ public class HealthPersonInfoServiceImpl implements IHealthPersonInfoService {
|
||||||
String encryptedSearchValue = SM4EncryptUtils.sm4Encrypt(healthPersonInfo.getArticleTitle());
|
String encryptedSearchValue = SM4EncryptUtils.sm4Encrypt(healthPersonInfo.getArticleTitle());
|
||||||
healthPersonInfo.setEncryptedSearchValue(encryptedSearchValue);
|
healthPersonInfo.setEncryptedSearchValue(encryptedSearchValue);
|
||||||
List<HealthPersonInfo> list=healthPersonInfoMapper.selectHealthPersonInfoList(healthPersonInfo);
|
List<HealthPersonInfo> list=healthPersonInfoMapper.selectHealthPersonInfoList(healthPersonInfo);
|
||||||
// if(CollUtil.isNotEmpty(list)) {
|
if(CollUtil.isNotEmpty(list)) {
|
||||||
// for(HealthPersonInfo vo : list) {
|
for(HealthPersonInfo vo : list) {
|
||||||
// vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile()));
|
vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile()));
|
||||||
// vo.setMobile(maskPhoneNumber(vo.getMobile()));
|
vo.setMobile(maskPhoneNumber(vo.getMobile()));
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
public static String maskPhoneNumber(String phoneNumber) {
|
public static String maskPhoneNumber(String phoneNumber) {
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="enterImgUrl != null and enterImgUrl != ''"> and kseer.enter_img_url = #{enterImgUrl}</if>
|
<if test="enterImgUrl != null and enterImgUrl != ''"> and kseer.enter_img_url = #{enterImgUrl}</if>
|
||||||
<if test="startDate != null "> and substring(kseer.enter_time,1,10) >= #{startDate} and #{endDate}>= substring(kseer.enter_time,1,10)</if>
|
<if test="startDate != null "> and substring(kseer.enter_time,1,10) >= #{startDate} and #{endDate}>= substring(kseer.enter_time,1,10)</if>
|
||||||
</where>
|
</where>
|
||||||
order by kseer.enter_time desc
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectKitchenStaffEnterExitRecordByCheckId" parameterType="Long" resultMap="KitchenStaffEnterExitRecordResult">
|
<select id="selectKitchenStaffEnterExitRecordByCheckId" parameterType="Long" resultMap="KitchenStaffEnterExitRecordResult">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue