This commit is contained in:
hanjian
2024-08-14 15:17:51 +08:00
parent 20a221c1a2
commit b610f94b2e
3483 changed files with 650965 additions and 0 deletions

View File

@@ -0,0 +1,133 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@page import="com.blueland.bpm.log.model.*" %>
<%@ include file="/commons/taglibs.jsp"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%@ include file="/commons/meta.jsp"%>
<base href="<%=basePath%>">
<title>LogSysRuntime新增</title>
</head>
<body>
<form action="${ctx}/logSysRuntime/save.do"
method="post">
<div class="content">
<div class="wrap">
<div class="wrap-top">
<div class="wrap-top-inner">
<a class="top-btn" id="submitButton"
onclick="javascript:getReferenceForm(this).submit();"><i
class="icon icon-sure"></i>保存</a> <a class="top-btn"
onclick="window.location='${ctx}/logSysRuntime/list.do'"><i
class="icon icon-close"></i>返回</a>
</div>
</div>
<div class="column margin50">
<h4 class="wrapper-tit">新增LogSysRuntime</h4>
<div class="bd">
<table class="table-review" border="0" cellspacing="0"
cellpadding="0" id="myTable">
<!-- 存放表单的区域 -->
<tr>
<th>
日志级别,取值说明: DEBUG调试信息 INFO比较重要的信息 WARN可能存在的潜在问题的信息以及重要的信息 ERROR系统的业务数据异常的信息如数据效验异常 FATAL系统发生了致命的错误的信息如数据库异常、访问某个服务网络异常。<font color="red">*</font>
</th>
<td>
<input type="text" name="logLevel"
value="" id="logLevel"
class="input" />
</td>
</tr>
<tr>
<th>
日志记录时间
<font color="red">*</font>
</th>
<td><input value=""
onclick="WdatePicker({dateFmt:'<%=LogSysRuntime.FORMAT_LOG_CREATE_TIME%>'})"
id="logCreateTimeString"
name="logCreateTimeString" maxlength="0"
class="input" />
</td>
</tr>
<tr>
<th>
所属应用系统ID取值说明GW、GD、FW<font color="red">*</font>
</th>
<td>
<input type="text" name="appId"
value="" id="appId"
class="input" />
</td>
</tr>
<tr>
<th>
所属应用系统名称,取值说明:公文、工单、法务<font color="red">*</font>
</th>
<td>
<input type="text" name="appName"
value="" id="appName"
class="input" />
</td>
</tr>
<tr>
<th>
所属应用系统模块ID取值说明USER_MGR<font color="red">*</font>
</th>
<td>
<input type="text" name="appModuleId"
value="" id="appModuleId"
class="input" />
</td>
</tr>
<tr>
<th>
所属应用系统工程中文名,取值说明:用户管理<font color="red">*</font>
</th>
<td>
<input type="text" name="appModuleName"
value="" id="appModuleName"
class="input" />
</td>
</tr>
<tr>
<th>
所属应用系统工程所在服务器IP
</th>
<td>
<input type="text" name="appProjectIp"
value="" id="appProjectIp"
class="input" />
</td>
</tr>
<tr>
<th>
日志内容<font color="red">*</font>
</th>
<td>
<input type="text" name="logContent"
value="" id="logContent"
class="input" />
</td>
</tr>
<tr>
<th>
备注:
</th>
<td>
<input type="text" name="logReamrk"
value="" id="logReamrk"
class="input" />
</td>
</tr>
</table>
</div>
</div>
</div>
</form>
</body>
</html>