浏览代码

Merge branch 'develop' of http://git.ycjcjy.com/marketing/services into develop

# Conflicts:
#	src/main/java/com/yunzhi/marketing/controller/TdBuildingTypeController.java
傅行帆 3 年前
父节点
当前提交
a321f4b1ee

+ 0
- 1
src/main/java/com/yunzhi/marketing/controller/TdBuildingTypeController.java 查看文件

80
             queryWrapper.eq("status", 1);
80
             queryWrapper.eq("status", 1);
81
             queryWrapper.orderByDesc("create_date");
81
             queryWrapper.orderByDesc("create_date");
82
             queryWrapper.eq("org_id", getOrgId(request));
82
             queryWrapper.eq("org_id", getOrgId(request));
83
-
84
             IPage<TdBuildingType> result = iTdBuildingTypeService.page(pg, queryWrapper);
83
             IPage<TdBuildingType> result = iTdBuildingTypeService.page(pg, queryWrapper);
85
             responseBean.addSuccess(result);
84
             responseBean.addSuccess(result);
86
         }catch (Exception e){
85
         }catch (Exception e){

+ 2
- 2
src/main/resources/mapper/TaBuildingMapper.xml 查看文件

157
                         <foreach collection="priceList" item="priceArr" open="(" close=")" separator=" OR ">
157
                         <foreach collection="priceList" item="priceArr" open="(" close=")" separator=" OR ">
158
                             (
158
                             (
159
                                 <if test='priceArr[0] != null and priceArr[0] != ""'>
159
                                 <if test='priceArr[0] != null and priceArr[0] != ""'>
160
-                                    <![CDATA[ start_price >= ${priceArr[0]}  ]]>
160
+                                    <![CDATA[ start_price > ${priceArr[0]}  ]]>
161
                                 </if>
161
                                 </if>
162
                                 <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
162
                                 <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
163
                                     AND
163
                                     AND
168
                             )  or
168
                             )  or
169
                             (
169
                             (
170
                             <if test='priceArr[0] != null and priceArr[0] != ""'>
170
                             <if test='priceArr[0] != null and priceArr[0] != ""'>
171
-                                <![CDATA[ end_price >= ${priceArr[0]}  ]]>
171
+                                <![CDATA[ end_price > ${priceArr[0]}  ]]>
172
                             </if>
172
                             </if>
173
                             <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
173
                             <if test='priceArr.length > 1 and priceArr[0] != null and priceArr[0] != ""'>
174
                                 AND
174
                                 AND