?? product.java
字號:
package com.emis.model.store.hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* Product generated by MyEclipse - Hibernate Tools
*/
public class Product implements java.io.Serializable {
// Fields
private String id;
private String name;
private Short status;
private String purpose;
private String remarks;
private Set storeins = new HashSet(0);
private Set storeouts = new HashSet(0);
// Constructors
/** default constructor */
public Product() {
}
/** minimal constructor */
public Product(String id, String name, Short status, String purpose, String remarks) {
this.id = id;
this.name = name;
this.status = status;
this.purpose = purpose;
this.remarks = remarks;
}
/** full constructor */
public Product(String id, String name, Short status, String purpose, String remarks, Set storeins, Set storeouts) {
this.id = id;
this.name = name;
this.status = status;
this.purpose = purpose;
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 Short getStatus() {
return this.status;
}
public void setStatus(Short status) {
this.status = status;
}
public String getPurpose() {
return this.purpose;
}
public void setPurpose(String purpose) {
this.purpose = purpose;
}
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 + -