⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 measure.java

📁 主要实现管理客户以及客户信息和其公司的服务管理
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -