?? storein.java
字號(hào):
package com.emis.model.store.hibernate;
/**
* Storein generated by MyEclipse - Hibernate Tools
*/
public class Storein implements java.io.Serializable {
// Fields
private Integer id;
private Product product;
private Storeroom storeroom;
private Client client;
private String name;
private String intime;
private String remarks;
// Constructors
/** default constructor */
public Storein() {
}
/** full constructor */
public Storein(Integer id, Product product, Storeroom storeroom, Client client, String name, String intime, String remarks) {
this.id = id;
this.product = product;
this.storeroom = storeroom;
this.client = client;
this.name = name;
this.intime = intime;
this.remarks = remarks;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Product getProduct() {
return this.product;
}
public void setProduct(Product product) {
this.product = product;
}
public Storeroom getStoreroom() {
return this.storeroom;
}
public void setStoreroom(Storeroom storeroom) {
this.storeroom = storeroom;
}
public Client getClient() {
return this.client;
}
public void setClient(Client client) {
this.client = client;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getIntime() {
return this.intime;
}
public void setIntime(String intime) {
this.intime = intime;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -