1.修改发布页面查询数据的bug。

This commit is contained in:
sxlong 2024-11-29 10:00:25 +08:00
parent 9580e204a7
commit 143389f52b
3 changed files with 11 additions and 0 deletions

View File

@ -37,6 +37,10 @@ public class EDDataParams implements Serializable {
* 文件夹名称 * 文件夹名称
*/ */
private String name; private String name;
/**
* 文件类型
*/
private String dataType;
/** /**
* 创建日期排序 * 创建日期排序
*/ */

View File

@ -29,6 +29,10 @@ public class EDDataRequest extends BaseRequest {
* 文件夹名称 * 文件夹名称
*/ */
private String name; private String name;
/**
* 文件类型
*/
private String dataType;
/** /**
* 创建日期排序 * 创建日期排序
*/ */

View File

@ -74,6 +74,9 @@
<if test="keyWord!=null and keyWord!=''"> <if test="keyWord!=null and keyWord!=''">
and data_name LIKE '%${keyWord}%' and data_name LIKE '%${keyWord}%'
</if> </if>
<if test="dataType != null and dataType!=''">
and data_type = '${dataType}'
</if>
<if test="saveStatus!=null and saveStatus!=''"> <if test="saveStatus!=null and saveStatus!=''">
and save_status='${saveStatus}' and save_status='${saveStatus}'
</if> </if>