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

📄 orderinfobean.java

📁 这是一个购物网站可以实现购物的功能还有后台管理
💻 JAVA
字号:
package com.my.model;

public class OrderInfoBean 
{
  private long ordersId,userId;
  private String truename,address,postcode,phone,username,email,payMode;
  private int grade,isPayed;
  private float totalPrice;
  private java.util.Date orderDate;
public int getGrade() {
	return grade;
}
public void setGrade(int grade) {
	this.grade = grade;
}
public int getIsPayed() {
	return isPayed;
}
public void setIsPayed(int isPayed) {
	this.isPayed = isPayed;
}
public java.util.Date getOrderDate() {
	return orderDate;
}
public void setOrderDate(java.util.Date orderDate) {
	this.orderDate = orderDate;
}
public long getOrdersId() {
	return ordersId;
}
public void setOrdersId(long ordersId) {
	this.ordersId = ordersId;
}
public String getPayMode() {
	return payMode;
}
public void setPayMode(String payMode) {
	this.payMode = payMode;
}
public String getAddress() {
	return address;
}
public void setAddress(String address) {
	this.address = address;
}
public String getEmail() {
	return email;
}
public void setEmail(String email) {
	this.email = email;
}
public long getUserId() {
	return userId;
}
public void setUserId(long userId) {
	this.userId = userId;
}
public String getPhone() {
	return phone;
}
public void setPhone(String phone) {
	this.phone = phone;
}
public String getPostcode() {
	return postcode;
}
public void setPostcode(String postcode) {
	this.postcode = postcode;
}
public float getTotalPrice() {
	return totalPrice;
}
public void setTotalPrice(float totalPrice) {
	this.totalPrice = totalPrice;
}
public String getTruename() {
	return truename;
}
public void setTruename(String truename) {
	this.truename = truename;
}
public String getUsername() {
	return username;
}
public void setUsername(String username) {
	this.username = username;
}
  
}

⌨️ 快捷键说明

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