feat: 体系搜索列表支持文本状态筛选

This commit is contained in:
2023-12-05 22:42:31 +08:00
parent a30d1d1271
commit e2fff404d5
3 changed files with 9 additions and 1 deletions
@@ -53,7 +53,7 @@ public class StandSystemDTO {
private String standName;
@ApiModelProperty(value = "标准状态")
@Excel(name = "文本状态", width = 25, orderNum = "4")
@Excel(name = "标准状态", width = 25, orderNum = "4")
private String standState;
@ApiModelProperty(value = "文本状态")
@@ -255,6 +255,10 @@
AND gba.WSSMR LIKE CONCAT('%',#{param.draftUserName},'%')
</if>
<!--搜索条件数据来源-->
<if test="param.standState != null and param.standState != ''">
AND gb.TEXT_STATUS = #{param.standState}
</if>
<!--搜索条件数据来源-->
<if test="param.dataSource != null and param.dataSource != ''">
AND gb.STAND_TYPE = #{param.dataSource}
</if>
@@ -1340,6 +1340,10 @@
<if test="param.draftUserName != null and param.draftUserName != ''">
AND esa.QCRBUSS LIKE CONCAT('%',#{param.draftUserName},'%')
</if>
<!--标准状态-->
<if test="param.standState != null and param.standState != ''">
AND es.TEXT_STATUS_BUSS = #{param.standState}
</if>
<!--数据来源-->
<if test="param.dataSource != null and param.dataSource != ''">
AND 'ENTERPRISE' = #{param.dataSource}