Compare commits

..

No commits in common. "770c30e06973f421405ead06473bf27090a65ff4" and "602c04b0f68fa42699e72d3e85a20747554a03af" have entirely different histories.

2 changed files with 6 additions and 7 deletions

View File

@ -53,12 +53,12 @@ public class HealthPersonInfoServiceImpl implements IHealthPersonInfoService {
String encryptedSearchValue = SM4EncryptUtils.sm4Encrypt(healthPersonInfo.getArticleTitle());
healthPersonInfo.setEncryptedSearchValue(encryptedSearchValue);
List<HealthPersonInfo> list=healthPersonInfoMapper.selectHealthPersonInfoList(healthPersonInfo);
// if(CollUtil.isNotEmpty(list)) {
// for(HealthPersonInfo vo : list) {
// vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile()));
// vo.setMobile(maskPhoneNumber(vo.getMobile()));
// }
// }
if(CollUtil.isNotEmpty(list)) {
for(HealthPersonInfo vo : list) {
vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile()));
vo.setMobile(maskPhoneNumber(vo.getMobile()));
}
}
return list;
}
public static String maskPhoneNumber(String phoneNumber) {

View File

@ -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="startDate != null "> and substring(kseer.enter_time,1,10) >= #{startDate} and #{endDate}>= substring(kseer.enter_time,1,10)</if>
</where>
order by kseer.enter_time desc
</select>
<select id="selectKitchenStaffEnterExitRecordByCheckId" parameterType="Long" resultMap="KitchenStaffEnterExitRecordResult">