133 lines
4.1 KiB
Plaintext
133 lines
4.1 KiB
Plaintext
<%@ 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> |