📄 love.java
字号:
package com.po;
import java.util.HashSet;
import java.util.Set;
/**
* Love generated by MyEclipse Persistence Tools
*/
public class Love implements java.io.Serializable {
// Fields
private Integer lid;
private String lname;
private Set emploves = new HashSet(0);
// Constructors
/** default constructor */
public Love() {
}
/** full constructor */
public Love(String lname, Set emploves) {
this.lname = lname;
this.emploves = emploves;
}
// Property accessors
public Integer getLid() {
return this.lid;
}
public void setLid(Integer lid) {
this.lid = lid;
}
public String getLname() {
return this.lname;
}
public void setLname(String lname) {
this.lname = lname;
}
public Set getEmploves() {
return this.emploves;
}
public void setEmploves(Set emploves) {
this.emploves = emploves;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -