Browse Source

添加搜索

origin/feature/monitoring
Jackwang 4 years ago
parent
commit
638f6db563
  1. 1
      epdc-cloud-custom/src/main/java/com/elink/esua/epdc/modules/epidemic/feign/OssFeignClient.java
  2. 3
      epdc-cloud-custom/src/main/resources/mapper/epidemic/PersonTestingDao.xml

1
epdc-cloud-custom/src/main/java/com/elink/esua/epdc/modules/epidemic/feign/OssFeignClient.java

@ -16,7 +16,6 @@ import org.springframework.web.bind.annotation.PostMapping;
*/
@FeignClient(name = ServiceConstant.EPDC_OSS_SERVER, fallback = OssFeignClientFallback.class)
public interface OssFeignClient {
//,url = "http://127.0.0.1:9095"
/**
* File文件上传到文件服务器

3
epdc-cloud-custom/src/main/resources/mapper/epidemic/PersonTestingDao.xml

@ -33,6 +33,9 @@
<if test="idcard != null and idcard != ''">
AND idcard like '%${idcard}%'
</if>
<if test="mobile != null and mobile != ''">
AND mobile like '%${mobile}%'
</if>
order by CREATED_TIME desc
</select>

Loading…
Cancel
Save