Commit ae711986 by mayunfei

侦查指令对接线索转递函接口

parent 7c420132
......@@ -3349,6 +3349,21 @@ public class ZczlController {
}
//审批权限查询与设置--end
/**
* 侦察指令状态
* @return
*/
@RequestMapping("/doQueryZt")
@ResponseBody
public String doQueryZt(HttpServletRequest request){
String xxzjbh = request.getParameter("xxzjbh");
String flag = zczlService.doQueryZt(xxzjbh);
return flag;
}
}
......@@ -164,4 +164,6 @@ public interface ZczlDao {
int updateQxfp(TbYwZczlSpqx tbYwZczlSpqx);
List<String> queryAllUserIdByYwlx(String startId);
int doQueryZt(String xxzjbh);
}
......@@ -147,4 +147,6 @@ public interface IZczlService {
Map getFpqxxxByUserId(String userId);
String doQxfp(TbYwZczlSpqx tbYwZczlSpqx);
String doQueryZt(String xxzjbh);
}
......@@ -1922,5 +1922,15 @@ public class ZczlService implements IZczlService {
return flag;
}
@Override
public String doQueryZt(String xxzjbh) {
int count = zczlDao.doQueryZt(xxzjbh);
if(count>0){
return "1";
}else{
return "0";
}
}
//审批权限查询与设置--end
}
......@@ -1986,6 +1986,11 @@
</select>
<select id="doQueryZt" parameterType="java.lang.String" resultType="java.lang.Integer">
SELECT count(*) from TB_YW_ZCZL
where XGXX_XXZJBH = #{xxjzbh}
</select>
<!-- 审批权限查询与设置end -->
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment