measure.java
来自「主要实现管理客户以及客户信息和其公司的服务管理」· Java 代码 · 共 55 行
JAVA
55 行
package entity;
/**
* Measure generated by MyEclipse Persistence Tools
*/
public class Measure implements java.io.Serializable {
// Fields
private Integer measureId;
private Lost lost;
private String measureMethod;
// Constructors
/** default constructor */
public Measure() {
}
/** full constructor */
public Measure(Lost lost, String measureMethod) {
this.lost = lost;
this.measureMethod = measureMethod;
}
// Property accessors
public Integer getMeasureId() {
return this.measureId;
}
public void setMeasureId(Integer measureId) {
this.measureId = measureId;
}
public Lost getLost() {
return this.lost;
}
public void setLost(Lost lost) {
this.lost = lost;
}
public String getMeasureMethod() {
return this.measureMethod;
}
public void setMeasureMethod(String measureMethod) {
this.measureMethod = measureMethod;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?