house.java

来自「本程序主要实现对管理系统的初步管理」· Java 代码 · 共 54 行

JAVA
54
字号
package org.ads123.goodsmanagers.dto;

public class House {
	private String H_no;
	private String H_type;
	private float H_big;
	private String H_hire;
	private String H_state;
	
	public House() {
		super();
	}
	
	public House(String h_no, String h_type, float h_big, String h_hire,
			String h_state) {
		super();
		H_no = h_no;
		H_type = h_type;
		H_big = h_big;
		H_hire = h_hire;
		H_state = h_state;
	}
	public String getH_no() {
		return H_no;
	}
	public void setH_no(String h_no) {
		H_no = h_no;
	}
	public String getH_type() {
		return H_type;
	}
	public void setH_type(String h_type) {
		H_type = h_type;
	}
	public float getH_big() {
		return H_big;
	}
	public void setH_big(float h_big) {
		H_big = h_big;
	}
	public String getH_hire() {
		return H_hire;
	}
	public void setH_hire(String h_hire) {
		H_hire = h_hire;
	}
	public String getH_state() {
		return H_state;
	}
	public void setH_state(String h_state) {
		H_state = h_state;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?