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

📄 house.java

📁 本程序主要实现对管理系统的初步管理
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -