📄 checkproductdto.java
字号:
package com.bean.DTO;
public class CheckProductDTO {
private int productID;
private String inputtime;
private int amount;
private float realprice;
private float budgetprice;
private int projectID;
private String productname;
public String getInputtime() {
return inputtime;
}
public void setInputtime(String inputtime) {
this.inputtime = inputtime;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public int getProductID() {
return productID;
}
public void setProductID(int productID) {
this.productID = productID;
}
public float getRealprice() {
return realprice;
}
public void setRealprice(float realprice) {
this.realprice = realprice;
}
public float getBudgetprice() {
return budgetprice;
}
public void setBudgetprice(float budgetprice) {
this.budgetprice = budgetprice;
}
public int getProjectID() {
return projectID;
}
public void setProjectID(int projectID) {
this.projectID = projectID;
}
public String getProductname() {
return productname;
}
public void setProductname(String productname) {
this.productname = productname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -