?? 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 + -