40 lines
758 B
Java
40 lines
758 B
Java
package cn.palmte.work.model;
|
|
|
|
import org.hibernate.annotations.GenericGenerator;
|
|
|
|
import javax.persistence.*;
|
|
|
|
/**
|
|
* 职位
|
|
*/
|
|
@Entity
|
|
@Table(name = "user_position")
|
|
public class UserPosition {
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
@GenericGenerator(name = "persistenceGenerator", strategy = "increment")
|
|
private Integer id;
|
|
|
|
@Column(name = "position_name")
|
|
private String positionName;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getPositionName() {
|
|
return positionName;
|
|
}
|
|
|
|
public void setPositionName(String positionName) {
|
|
this.positionName = positionName;
|
|
}
|
|
} |