orderinfobean.java

来自「这是一个购物网站可以实现购物的功能还有后台管理」· Java 代码 · 共 90 行

JAVA
90
字号
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 + =
减小字号Ctrl + -
显示快捷键?