查询枪口列表过滤逻辑删除的

This commit is contained in:
2023-11-16 17:08:37 +08:00
parent bb0a27971f
commit d15f2e9d0e

View File

@@ -25,7 +25,8 @@
<select id="selectPileConnectorInfoList" parameterType="com.jsowell.pile.domain.PileConnectorInfo"
resultMap="PileConnectorInfoResult">
<include refid="selectPileConnectorInfoVo"/>
<where>
where
del_flag = '0'
<if test="name != null and name != ''">
and name like concat('%', #{name}, '%')
</if>
@@ -38,7 +39,6 @@
<if test="pileSn != null">
and pile_sn = #{pileSn}
</if>
</where>
</select>
<select id="selectPileConnectorInfoById" parameterType="Integer" resultMap="PileConnectorInfoResult">