📄 pen.java
字号:
package com.sean.pet.hibernate.po;
/**
* Pen entity.
*
* @author MyEclipse Persistence Tools
*/
public class Pen implements java.io.Serializable {
// Fields
private String id;
private Pet pet;
private String v;
private String state;
// Constructors
/** default constructor */
public Pen() {
}
/** full constructor */
public Pen(Pet pet, String v, String state) {
this.pet = pet;
this.v = v;
this.state = state;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Pet getPet() {
return this.pet;
}
public void setPet(Pet pet) {
this.pet = pet;
}
public String getV() {
return this.v;
}
public void setV(String v) {
this.v = v;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -