You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
561 B
Plaintext
22 lines
561 B
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
|
<%@ page import="weaver.interfaces.njycjt.mode.UpdateZjjhzxsj_ModeExpand" %>
|
|
<jsp:useBean id="bb" class="weaver.general.BaseBean"/>
|
|
<%
|
|
|
|
JSONObject dataJson = new JSONObject();
|
|
try{
|
|
UpdateZjjhzxsj_ModeExpand updateZjjhzxsj_ModeExpand = new UpdateZjjhzxsj_ModeExpand();
|
|
updateZjjhzxsj_ModeExpand.updateZjjhzxsjData();
|
|
}catch (Exception e){
|
|
dataJson.put("code",500);
|
|
}
|
|
|
|
dataJson.put("code",200);
|
|
%>
|
|
|
|
<%=dataJson.toJSONString() %>
|
|
|
|
|