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.
16 lines
393 B
16 lines
393 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>显示用户</title>
|
|
</head>
|
|
<body>
|
|
<h2>添加成功!</h2>
|
|
用户编号:${user.userId}<br>
|
|
用户名:${user.username}<br>
|
|
真实姓名:${user.realName}<br>
|
|
手机号:${user.phone}<br>
|
|
邮箱:${user.email}<br>
|
|
创建时间:${user.createTime}<br>
|
|
状态:${user.status}<br>
|
|
</body>
|
|
</html> |