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

📄 order.java

📁 图书管理系统,用JSP实现,图书的查询,添加等功能
💻 JAVA
字号:
package beans;
/**
 * 订单
 */
public class order {
		private long Id;			
		private String orderId;		    //订单编号
		private long UserId;			//用户序列号
		private String SubmitTime;		//提交订单时间
		private String ConsignmentTime;         //交货时间
		private float TotalPrice;		
		private String content;		        //备注
		private String IPAddress;		//下单时IP
		private boolean IsPayoff;		//用户是否已付款
		private boolean IsSales;		//是否已发货

		public order() {
				Id = 0;
				orderId = "";
				UserId = 0;
				SubmitTime = "";
				ConsignmentTime = "";
				TotalPrice = 0;
				content = "";
				IPAddress = "";
				IsPayoff = false;
				IsSales = false;
		}
		public long getId() {//info.jsp
				return Id;
		}
		public void setId(long newId){
				this.Id = newId;
		}
		public String getOrderId() {//info.jsp
				return orderId;
		}
		public void setOrderId(String neworderId) {
				this.orderId = neworderId;
		}
		public long getUserId() {
				return UserId;
		}
		public void setUserId(long newUserId){
				this.UserId = newUserId;
		}
		public String getSubmitTime() {//info.jsp
				return SubmitTime;
		}
		public void setSubmitTime(String newSubmitTime) {
				this.SubmitTime = newSubmitTime;
		}
		public String getConsignmentTime() {
				return ConsignmentTime;
		}
		public void setConsignmentTime(String con_time) {
				ConsignmentTime = con_time;
		}
		public float getTotalPrice() {//info.jsp
				return TotalPrice;
		}
		public void setTotalPrice(float newTotalPrice){
				this.TotalPrice = newTotalPrice;
		}
		public String getContent() {
				return content;
		}
		public void setContent(String newContent) {
				this.content = newContent;
		}
		public String getIPAddress() {
				return IPAddress;
		}
		public void setIPAddress(String newIPAddress) {
				this.IPAddress = newIPAddress;
		}
		public boolean getIsPayoff() {//info.jsp
				return IsPayoff;
		}
		public void setIsPayoff(boolean newIsPayoff){
				this.IsPayoff = newIsPayoff;
		}
		public boolean getIsSales() {//info.jsp
				return IsSales;
		}
		public void setIsSales(boolean newIsSales){
				this.IsSales = newIsSales;
		}
}

⌨️ 快捷键说明

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