提交 7436af87 编写于 作者: minghao.wu's avatar minghao.wu

fix: 按照手机号搜索

上级 a97065a1
流水线 #42953 已取消 于阶段
......@@ -180,10 +180,12 @@ public class HospitalSaasUserServiceImpl implements HospitalSaasUserService {
@Override
public HospitalSaasUserResp listByPage(HospitalSaasUserListReq req) {
String mobileEncrypt = AESUtil.encryptV0(req.getMobile());
Map<String, Object> map = new HashMap<>(5);
map.put("hospitalId", req.getHospitalId());
map.put("name", req.getName());
map.put("mobile", req.getMobile());
map.put("mobile", mobileEncrypt);
Integer count = accountMapper.listCountByPage(map);
if (count < 1) {
return new HospitalSaasUserResp(Collections.emptyList(), 0);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册