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.
46 lines
799 B
46 lines
799 B
//用户管理Java类
|
|
package com.power.travel.model;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
@Entity
|
|
@Table(name = "sys_user")
|
|
public class SysUser {
|
|
|
|
|
|
@Id
|
|
@GeneratedValue(strategy= GenerationType.IDENTITY)
|
|
@Column(name = "id")
|
|
private Integer id;
|
|
@Column(name = "username")
|
|
private String username;
|
|
@Column(name = "password")
|
|
private String password;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = 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;
|
|
}
|
|
|
|
}
|