2024-08-14 15:17:51 +08:00

124 lines
4.5 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ 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>分区说明按应用系统ID(LOG_APP_ID)做主分区,按日期(LOG_OPERATE_TIME)(单位为天)做子分区编辑</title>
</head>
<body>
<form action="${ctx}/tlogUserOperate/update.do" method="post">
<div class="main-container" id="main-container">
<div class="panel-heading">
编辑分区说明按应用系统ID(LOG_APP_ID)做主分区,按日期(LOG_OPERATE_TIME)(单位为天)做子分区
</div>
<div class="panel panel-primary">
<div class="col-md-offset-1 col-md-9" style="text-align: center;">
<a class="btn btn-sm btn-primary" id="submitButton"
onclick="javascript:getReferenceForm(this).submit();"><i
class="icon icon-sure"></i>保存</a> <a class="btn btn-sm btn-primary"
onclick="window.location='${ctx}/tlogUserOperate/list.do'"><i
class="icon icon-close"></i>返回</a>
</div>
<div class="panel-body">
<table class='table table-bordered' border="0" cellspacing="0" cellpadding="0" id="myTable">
<!-- 存放隐藏域的区域 -->
<input type="hidden" id="logId"
name="logId"
value="${tlogUserOperate.logId}" />
<!-- 存放表单的区域 -->
<tr>
<th>操作用户ID<font
color="red">*</font>
</th>
<td><input type="text" name="logUserId"
value="${tlogUserOperate.logUserId}"
id="logUserId" class="input" /></td>
</tr>
<tr>
<th>操作用户姓名<font
color="red">*</font>
</th>
<td><input type="text" name="logUserName"
value="${tlogUserOperate.logUserName}"
id="logUserName" class="input" /></td>
</tr>
<tr>
<th>操作客户端IP取值说明(操作人的浏览器IP地址
</th>
<td><input type="text" name="logUserIp"
value="${tlogUserOperate.logUserIp}"
id="logUserIp" class="input" /></td>
</tr>
<tr>
<th>操作发生时间<font
color="red">*</font>
</th>
<td><input
value="${tlogUserOperate.logOperateTimeString}"
onclick="WdatePicker({dateFmt:'<%=TlogUserOperate.FORMAT_LOG_OPERATE_TIME%>'})"
id="logOperateTimeString"
name="logOperateTimeString" maxlength="0"
class="input"/></td>
</tr>
<tr>
<th>操作主体所属应用系统ID<font
color="red">*</font>
</th>
<td><input type="text" name="logAppId"
value="${tlogUserOperate.logAppId}"
id="logAppId" class="input" /></td>
</tr>
<tr>
<th>操作主体所属应用系统模块名称,取值说明:注册用户所属用户管理模块:
</th>
<td><input type="text" name="logAppModuleName"
value="${tlogUserOperate.logAppModuleName}"
id="logAppModuleName" class="input" /></td>
</tr>
<tr>
<th>操作动作名称,取值说明:新增组织机构的新增操作<font
color="red">*</font>
</th>
<td><input type="text" name="logOperateName"
value="${tlogUserOperate.logOperateName}"
id="logOperateName" class="input" /></td>
</tr>
<tr>
<th>被操作主体,取值说明:新增组织机构的机构主体<font
color="red">*</font>
</th>
<td><input type="text" name="logOperateSubject"
value="${tlogUserOperate.logOperateSubject}"
id="logOperateSubject" class="input" /></td>
</tr>
<tr>
<th>操作主体业务关键字取值说明新增组织机构的机构ID批量操作可为空<font
color="red">*</font>
</th>
<td><input type="text" name="logOperateSubjectKey"
value="${tlogUserOperate.logOperateSubjectKey}"
id="logOperateSubjectKey" class="input" /></td>
</tr>
<tr>
<th>备注:
</th>
<td><input type="text" name="logRemark"
value="${tlogUserOperate.logRemark}"
id="logRemark" class="input" /></td>
</tr>
</table>
</div>
</div>
</div>
</form>
</body>
</html>