Antiloveg 8 years ago
parent
commit
e21b82cd82

+ 4 - 4
src/main/java/com/goafanti/common/mapper/DemandMapper.xml

@@ -923,10 +923,10 @@
   			and d.industry_category_b = #{industryCategoryB,jdbcType=INTEGER}
   		</if>
   		<if test="budgetCostLower != null">
-  			and d.budget_cost <![CDATA[ > ]]>= #{budgetCostLower,jdbcType=DECIMAL}
+  			and d.budget_cost <![CDATA[ >= ]]> #{budgetCostLower,jdbcType=DECIMAL}
   		</if>
   		<if test="budgetCostUpper != null">
-  			and d.budget_cost <![CDATA[ < ]]>= #{budgetCostUpper,jdbcType=DECIMAL}}
+  			and d.budget_cost <![CDATA[ <= ]]> #{budgetCostUpper,jdbcType=DECIMAL}}
   		</if>
   		<if test="demandType != null">
   			and d.demand_type = #{demandType,jdbcType=INTEGER}
@@ -955,10 +955,10 @@
   			and d.industry_category_b = #{industryCategoryB,jdbcType=INTEGER}
   		</if>
   		<if test="budgetCostLower != null">
-  			and d.budget_cost <![CDATA[ > ]]>= #{budgetCostLower,jdbcType=DECIMAL}
+  			and d.budget_cost <![CDATA[ >= ]]> #{budgetCostLower,jdbcType=DECIMAL}
   		</if>
   		<if test="budgetCostUpper != null">
-  			and d.budget_cost <![CDATA[ < ]]>= #{budgetCostUpper,jdbcType=DECIMAL}}
+  			and d.budget_cost <![CDATA[ <= ]]> #{budgetCostUpper,jdbcType=DECIMAL}}
   		</if>
   		<if test="demandType != null">
   			and d.demand_type = #{demandType,jdbcType=INTEGER}

+ 0 - 11
src/main/java/com/goafanti/portal/controller/PortalDetailApiController.java

@@ -1,11 +0,0 @@
-package com.goafanti.portal.controller;
-
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import com.goafanti.common.controller.BaseApiController;
-@RestController
-@RequestMapping(value = "/portal/detail")
-public class PortalDetailApiController extends BaseApiController{
-
-}

+ 0 - 11
src/main/java/com/goafanti/portal/controller/PortalQuizApiController.java

@@ -1,11 +0,0 @@
-package com.goafanti.portal.controller;
-
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import com.goafanti.common.controller.CertifyApiController;
-@RestController
-@RequestMapping(value = "/api/user/portal/quiz")
-public class PortalQuizApiController extends CertifyApiController{
-	
-}