eight
2024-09-25 1e5a82d409067c435caff8305d530c35f64db059
jh-module-ecg/jh-module-ecg-biz/src/main/resources/mapper/devrent/DevRentMapper.xml
@@ -9,11 +9,14 @@
        文档可见:https://www.iocoder.cn/MyBatis/x-plugins/
     -->
    <select id="getDismantleRentByState" resultType="cn.lihu.jh.module.ecg.dal.dataobject.devrent.DevRentDO">
    <select id="getRentByState" resultType="cn.lihu.jh.module.ecg.dal.dataobject.devrent.DevRentDO">
        select * from lihu.dev_rent
        <where>
            <if test="state != null">
                and state = #{state}
            <if test="stateList != null">
                and state in (
                  <foreach collection='stateList' separator=',' item='state'>
                    #{state}
                  </foreach> )
            </if>
            <if test="devId != null and devId != ''">
             and dev_id = #{devId}