傅行帆 5 years ago
parent
commit
a655c00e64
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/main/resources/mapper/TaBuildingMapper.xml

+ 2
- 2
src/main/resources/mapper/TaBuildingMapper.xml View File

133
                         <foreach collection="priceList" item="priceArr" open="(" close=")" separator=" OR ">
133
                         <foreach collection="priceList" item="priceArr" open="(" close=")" separator=" OR ">
134
                             (
134
                             (
135
                                 <if test='priceArr[0] != null and priceArr[0] != ""'>
135
                                 <if test='priceArr[0] != null and priceArr[0] != ""'>
136
-                                    <![CDATA[ startPrice >= ${priceArr[0]}  ]]>
136
+                                    <![CDATA[ start_price >= ${priceArr[0]}  ]]>
137
                                 </if>
137
                                 </if>
138
                                 <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
138
                                 <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
139
                                     AND
139
                                     AND
140
                                 </if>
140
                                 </if>
141
                                 <if test='priceArr.length > 1 and priceArr[1] != null and priceArr[1] != ""'>
141
                                 <if test='priceArr.length > 1 and priceArr[1] != null and priceArr[1] != ""'>
142
-                                    <![CDATA[ endPrice <= ${priceArr[1]}  ]]>
142
+                                    <![CDATA[ end_price <= ${priceArr[1]}  ]]>
143
                                 </if>
143
                                 </if>
144
                             )
144
                             )
145
                         </foreach>
145
                         </foreach>