📄 specialties.java
字号:
package org.springframework.samples;
// Generated 2006-10-27 18:12:00 by Hibernate Tools 3.2.0.beta8
import java.util.HashSet;
import java.util.Set;
/**
* Specialties generated by hbm2java
*/
public class Specialties implements java.io.Serializable {
// Fields
private int id;
private String name;
private Set vetses = new HashSet(0);
// Constructors
/** default constructor */
public Specialties() {
}
/** minimal constructor */
public Specialties(int id) {
this.id = id;
}
/** full constructor */
public Specialties(int id, String name, Set vetses) {
this.id = id;
this.name = name;
this.vetses = vetses;
}
// Property accessors
public int getId() {
return this.id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Set getVetses() {
return this.vetses;
}
public void setVetses(Set vetses) {
this.vetses = vetses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -