Ecology-Dev-chaofa/LuWeiGuangDian/interface.lwgd/getBusinessIndicatorScore.jsp

22 lines
689 B
Plaintext
Raw Normal View History

2025-09-29 10:39:10 +08:00
<%@ 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());
%>