📄 storeroom.java
字号:
package com.emis.model.store.hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* Storeroom generated by MyEclipse - Hibernate Tools
*/
public class Storeroom implements java.io.Serializable {
// Fields
private String id;
private String name;
private String remarks;
private Set storeins = new HashSet(0);
private Set storeouts = new HashSet(0);
// Constructors
/** default constructor */
public Storeroom() {
}
/** minimal constructor */
public Storeroom(String id, String name, String remarks) {
this.id = id;
this.name = name;
this.remarks = remarks;
}
/** full constructor */
public Storeroom(String id, String name, String remarks, Set storeins, Set storeouts) {
this.id = id;
this.name = name;
this.remarks = remarks;
this.storeins = storeins;
this.storeouts = storeouts;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public Set getStoreins() {
return this.storeins;
}
public void setStoreins(Set storeins) {
this.storeins = storeins;
}
public Set getStoreouts() {
return this.storeouts;
}
public void setStoreouts(Set storeouts) {
this.storeouts = storeouts;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -