|
@ -162,13 +162,13 @@ public class WlyyHttpLogService extends BaseJpaService<WlyyHttpLogDO, WlyyHttpL
|
|
|
sql+=" and t.code = '"+code+"'";
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(faceName)){
|
|
|
sql+=" and t.name like '%"+faceName+"%'";
|
|
|
sql+=" and (t.name like '%"+faceName+"%' or t.code = '"+faceName+"')";
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(patient)){
|
|
|
sql+=" and a.name like '%"+patient+"%'";
|
|
|
sql+=" and (a.name like '%"+patient+"%' or t.patient = '"+patient+"')";
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(doctor)){
|
|
|
sql+=" and b.name like '%"+doctor+"%'";
|
|
|
sql+=" and (b.name like '%"+doctor+"%'or t.doctor = '"+doctor+"')";
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(requestKeyWord)){
|
|
|
sql+=" and t.request like '%"+requestKeyWord+"%'";
|