public Integer user_id; public String user_name; public String password; public String user_email; public Integer user_role_id; public String friends; public String groups;创建数据库表,以user——id为主键
时间: 2024-02-18 15:06:33 浏览: 306
可以使用如下的SQL语句在数据库中创建一个名为user_info的表,其中user_id为主键:
```
CREATE TABLE user_info (
user_id INT PRIMARY KEY,
user_name VARCHAR(255),
password VARCHAR(255),
user_email VARCHAR(255),
user_role_id INT,
friends TEXT,
groups TEXT
);
```
这样就可以在数据库中创建一个名为user_info的表,其中包含了user_id、user_name、password、user_email、user_role_id、friends和groups七个字段,其中user_id为主键。
相关问题
public class User implements Serializable { private Integer id; //用户id private String name; //用户名称 private String password; //用户密码 private String email; //用户邮箱(用户账号) private String role; //用户角色 private String status; //用户状态 private String hiredate; //信息录入时间 private String departuredate;//毕业时间
这是一段 Java 代码,定义了一个 User 类,并包含了一些属性。其中 id、name、password、email、role、status、hiredate 和 departuredate 分别代表用户的 id、名称、密码、邮箱、角色、状态、信息录入时间和毕业时间。该类实现了 Serializable 接口,表示该类可以被序列化和反序列化。
@Transactional(rollbackFor = Exception.class) @Override public MessageData updateUser(User user) throws Exception { if (user == null || user.getId() == null || user.getId() < 1) { throw new ServiceException(WholeConstants.CommonStatus.MISSING_PARAMETERS); } if (StringUtils.isBlank(user.getName()) || !user.getName().matches(PathConstant.STRING_TEN)) { throw new ServiceException(WholeConstants.CommonStatus.NAME_FORMAT_ERROR); } if (StringUtils.isBlank(user.getUsername()) || !user.getUsername().matches(PathConstant.STRING_TEN)) { throw new ServiceException(WholeConstants.CommonStatus.ACCOUNT_NAME_FORMAT_ERROR); } Integer[] params = {1,2};//userType if (user.getUserType() == null || !ObjectUtils.containsElement(params,user.getUserType())) { throw new ServiceException(WholeConstants.CommonStatus.ERROR_STATUS_PARAMS); } if (StringUtils.isAnyBlank(user.getPassword(),user.getCheckPass())) { if (StringUtils.isAllBlank(user.getPassword(),user.getCheckPass())) { user.setPassword(null);//两次密码都为空则不修改 }else { throw new ServiceException(WholeConstants.CommonStatus.PASSWORD_FORMAT_ERROR); } } if (!user.getPassword().matches(PathConstant.STRING_TWENTYS) || !user.getCheckPass().matches(PathConstant.STRING_TWENTYS)) { throw new ServiceException(WholeConstants.CommonStatus.PASSWORD_FORMAT_ERROR); }else if (!user.getPassword().equals(user.getCheckPass())){ throw new ServiceException(WholeConstants.CommonStatus.ACCOUNT_DIFF_PASSWORD); }else { user.setPassword(Md5Util.getStrMd5(user.getPassword())); } //判断用户名称是否重复 if(webUserMapper.selectByUserName(user.getUsername(),user.getId()) > 0) { throw new ServiceException(WholeConstants.CommonStatus.ACCOUNT_NAME_EXIST); } user.setUpdateTime(new Date()); user.setUpdateUserId(ShiroUtil.getUserId()); //web平台修改用户角色 if(user.getUserType().equals(PathConstant.USER_TYPE_WEB)) { if(user.getRoleId() == null) { throw new ServiceException(WholeConstants.CommonStatus.ACCOUNT_ROLE_NULL); } if (userRoleMapper.updateByUserId(user.getId(), user.getRoleId()) < 1) { throw new ServiceException(WholeConstants.CommonStatus.ERROR_UPDATE); } } else if(user.getUserType().equals(PathConstant.USER_TYPE_APP)){ userRoleMapper.deleteByUserId(user.getId()); } if (webUserMapper.updateUser(user) != 1) { throw new ServiceException(WholeConstants.CommonStatus.ERROR_UPDATE); } logService.recordLog(LogType.UPDATE_TYPE.getCode(), "修改用户信息"); return MessageData.buildSuccess(); }翻译代码
这是一段Java代码,主要是一个名为updateUser的函数,其作用是更新用户信息。函数使用了@Transactional(rollbackFor = Exception.class)注解,表示在执行函数时会开启一个事务,如果出现异常则会回滚。函数接收一个User对象作为参数,并返回一个MessageData对象。
函数中进行了一系列的参数校验,包括用户ID、用户名称、账号名称、用户类型、密码等。如果检测到参数有误,则会抛出ServiceException异常。如果校验通过,则会更新用户的更新时间、更新者ID等信息,并将更新后的用户信息存储到数据库中。
在更新用户信息时,如果用户类型为web平台用户,则还会进行用户角色的修改操作。
最后,函数会记录日志并返回一个执行成功的MessageData对象。
阅读全文