package com.fuzamei.entity; import java.util.List; //用户表 public class User { private Integer id; //主键id private Integer user_id; //用户id private String username; //账号 private String password; //密码 private Integer role_id; //角色id private String person_name; //人名or公司名字 private Integer random; //随机数 private Long create_time; //添加时间 private Long update_time; //更新时间 public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getUser_id() { return user_id; } public void setUser_id(Integer user_id) { this.user_id = user_id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public Integer getRole_id() { return role_id; } public void setRole_id(Integer role_id) { this.role_id = role_id; } public String getPerson_name() { return person_name; } public void setPerson_name(String person_name) { this.person_name = person_name; } public Integer getRandom() { return random; } public void setRandom(Integer random) { this.random = random; } public long getCreate_time() { return create_time; } public void setCreate_time(long create_time) { this.create_time = create_time; } public long getUpdate_time() { return update_time; } public void setUpdate_time(long update_time) { this.update_time = update_time; } }