1.修改发布页面查询数据的bug。
This commit is contained in:
parent
9580e204a7
commit
143389f52b
|
|
@ -37,6 +37,10 @@ public class EDDataParams implements Serializable {
|
|||
* 文件夹名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
private String dataType;
|
||||
/**
|
||||
* 创建日期排序
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -29,6 +29,10 @@ public class EDDataRequest extends BaseRequest {
|
|||
* 文件夹名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
private String dataType;
|
||||
/**
|
||||
* 创建日期排序
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@
|
|||
<if test="keyWord!=null and keyWord!=''">
|
||||
and data_name LIKE '%${keyWord}%'
|
||||
</if>
|
||||
<if test="dataType != null and dataType!=''">
|
||||
and data_type = '${dataType}'
|
||||
</if>
|
||||
<if test="saveStatus!=null and saveStatus!=''">
|
||||
and save_status='${saveStatus}'
|
||||
</if>
|
||||
|
|
|
|||
Loading…
Reference in New Issue