📄 orders.java
字号:
package com.xfaccp.htapp.pojo;
public class Orders
{
int id;
String prodName; //产品名称
String cusName; //客户名称
int amount; //数量
String buyDate; //订购日期
public Orders(int id, String prodName, String cusName, int amount, String buyDate) {
super();
this.id = id;
this.prodName = prodName;
this.cusName = cusName;
this.amount = amount;
this.buyDate = buyDate;
}
public Orders(){}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getBuyDate() {
return buyDate;
}
public void setBuyDate(String buyDate) {
this.buyDate = buyDate;
}
public String getCusName() {
return cusName;
}
public void setCusName(String cusName) {
this.cusName = cusName;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getProdName() {
return prodName;
}
public void setProdName(String prodName) {
this.prodName = prodName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -