22 lines
689 B
Plaintext
22 lines
689 B
Plaintext
|
|
<%@ page contentType="text/html; charset=UTF-8" %>
|
||
|
|
<%@ page import="weaver.general.Util" %>
|
||
|
|
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
||
|
|
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
|
||
|
|
|
||
|
|
<%
|
||
|
|
JSONObject jsonObject = new JSONObject();
|
||
|
|
boolean flag = false;
|
||
|
|
jsonObject.put("status",flag);
|
||
|
|
|
||
|
|
String indexPlanId = Util.null2String(request.getParameter("jxfamc"));
|
||
|
|
|
||
|
|
rs.executeQuery("select jyzbdf from uf_jxkhfa where id=?",indexPlanId);
|
||
|
|
while(rs.next()){
|
||
|
|
String jyzbdf = Util.null2o(rs.getString("jyzbdf"));
|
||
|
|
jsonObject.put("data",jyzbdf);
|
||
|
|
jsonObject.put("status",true);
|
||
|
|
}
|
||
|
|
out.print(jsonObject.toJSONString());
|
||
|
|
|
||
|
|
%>
|