📄 order.java
字号:
package com.utils.model;
import java.io.Serializable;
public class Order implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String id;
private String customerName;
private String goodsName;
private String goodsNote;
private int count;
private String times;
private int prices;
private int type;
public Order(){}
public Order(String id, String customerName, String goodsName, String goodsNote, int count, String times, int prices, int type) {
super();
this.id = id;
this.customerName = customerName;
this.goodsName = goodsName;
this.goodsNote = goodsNote;
this.count = count;
this.times = times;
this.prices = prices;
this.type = type;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getGoodsName() {
return goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
public String getGoodsNote() {
return goodsNote;
}
public void setGoodsNote(String goodsNote) {
this.goodsNote = goodsNote;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getPrices() {
return prices;
}
public void setPrices(int prices) {
this.prices = prices;
}
public String getTimes() {
return times;
}
public void setTimes(String times) {
this.times = times;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -