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

📄 order.java

📁 使用J2EE Struts开发的房地产信息咨询系统
💻 JAVA
字号:
package building;

import java.lang.*;
import java.util.*;
import java.sql.*;
import javax.sql.*;


public class Order {
	private int Id = 0 ;
	private int userId = 0 ;
	private int buildingId = 0 ;
	private String subtime = null ;
	private String moneyinfo = null ;
	
	public Order(){
		
	}
	
	/*
	 * 楼房用户订单Id set and get
	 */
	public void setId(int Id){
		this.Id = Id ;
	}
	public int getId(){
		return (Id) ;
	}
	
	/*
	 * 楼房用户userId set and get
	 */
	public void setUserId(int userId){
		this.userId = userId ;
	}
	public int getUserId(){
		return (userId) ;
	}
	
	/*
	 * 楼房Id set and get
	 */
	public void setBuildingId(int buildingId){
		this.buildingId = buildingId ;
	}
	public int getBuildingId(){
		return (buildingId) ;
	}
	
	/*
	 * 订单提交时间subtime set and get
	 */
	public void setSubtime(String subtime){
		this.subtime = subtime ;
	}
	public String getSubtime(){
		return (subtime) ;
	}
	
	/*
	 * 付款状态moneyinfo set and get
	 */
	public void setMoneyinfo(String moneyinfo){
		this.moneyinfo = moneyinfo ;
	}
	public String getMoneyinfo(){
		return (moneyinfo) ;
	}

}

⌨️ 快捷键说明

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