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.
52 lines
1.4 KiB
52 lines
1.4 KiB
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>添加证券账户</title>
|
|
</head>
|
|
<body>
|
|
<h3>添加证券账户信息</h3>
|
|
<form action="${pageContext.request.contextPath}/securitiesAccount/add" method="post">
|
|
<table>
|
|
<tr>
|
|
<td>账户编号:</td>
|
|
<td><input type="text" name="accountId"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>用户编号:</td>
|
|
<td><input type="text" name="userId"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>账户号码:</td>
|
|
<td><input type="text" name="accountNo"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>券商名称:</td>
|
|
<td><input type="text" name="brokerName"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>总资产:</td>
|
|
<td><input type="text" name="totalAssets"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>创建时间:</td>
|
|
<td><input type="date" name="createTime"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>状态:</td>
|
|
<td>
|
|
<select name="status">
|
|
<option value="1">正常</option>
|
|
<option value="0">冻结</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="reset" value="重置">
|
|
<input type="submit" value="添加">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html> |