?? asset.java
字號:
package com.emis.model.asset.hibernate;
import com.emis.model.hr.hibernate.Department;
/**
* Asset generated by MyEclipse - Hibernate Tools
*/
public class Asset implements java.io.Serializable {
// Fields
private String id;
private Department department;
private Assettype assettype;
private String name;
private String price;
private Short status;
private String remarks;
// Constructors
/** default constructor */
public Asset() {
}
/** full constructor */
public Asset(String id, Department department, Assettype assettype, String name, String price, Short status, String remarks) {
this.id = id;
this.department = department;
this.assettype = assettype;
this.name = name;
this.price = price;
this.status = status;
this.remarks = remarks;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Department getDepartment() {
return this.department;
}
public void setDepartment(Department department) {
this.department = department;
}
public Assettype getAssettype() {
return this.assettype;
}
public void setAssettype(Assettype assettype) {
this.assettype = assettype;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
public Short getStatus() {
return this.status;
}
public void setStatus(Short status) {
this.status = status;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -