You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加数据字典</title>
</head>
<body>
<h3>添加数据字典信息</h3>
<form action="${pageContext.request.contextPath}/dict/add" method="post">
<table>
<tr>
<td>字典编号:</td>
<td><input type="text" name="dictId"></td>
</tr>
<tr>
<td>字典类型:</td>
<td><input type="text" name="dictType"></td>
</tr>
<tr>
<td>字典编码:</td>
<td><input type="text" name="dictCode"></td>
</tr>
<tr>
<td>字典名称:</td>
<td><input type="text" name="dictName"></td>
</tr>
<tr>
<td>排序:</td>
<td><input type="text" name="sort"></td>
</tr>
<tr>
<td colspan="2">
<input type="reset" value="重置">
<input type="submit" value="添加">
</td>
</tr>
</table>
</form>
</body>
</html>