Browse Source

删除标识问题修复

anderx 7 years ago
parent
commit
3de0803bb4

+ 2 - 2
src/main/java/com/goafanti/common/mapper/TechProjectMapper.xml

@@ -791,7 +791,7 @@ from
 			and a.task_receiver = #{taskReceiverId,jdbcType=VARCHAR}
 		</if>
 		<if test="deletedSign != null">
-			and d.deleted_sign = #{deletedSign,jdbcType=VARCHAR}
+			and a.deleted_sign = #{deletedSign,jdbcType=VARCHAR}
 		</if>
 		<if test="publishStatus != null">
 			and a.publish_status = #{publishStatus,jdbcType=VARCHAR}
@@ -838,7 +838,7 @@ from
 			and a.task_receiver = #{taskReceiverId,jdbcType=VARCHAR}
 		</if>
 		<if test="deletedSign != null">
-			and d.deleted_sign = #{deletedSign,jdbcType=VARCHAR}
+			and a.deleted_sign = #{deletedSign,jdbcType=VARCHAR}
 		</if>
 		<if test="publishStatus != null">
 			and a.publish_status = #{publishStatus,jdbcType=VARCHAR}

+ 1 - 1
src/main/java/com/goafanti/techproject/controller/AdminTechProjectApiController.java

@@ -58,7 +58,7 @@ import com.goafanti.user.bo.OrgUnitNames;
 import com.goafanti.user.service.UserService;
 
 @Controller
-@RequestMapping(value = "/api/admin/techproject")
+@RequestMapping(value = "/open/api/admin/techproject")
 public class AdminTechProjectApiController extends CertifyApiController {
 	@Value(value = "${aesSecretKey}")
 	private String					aesSecretKey	= null;