checkproductdto.java
来自「仓库管理系统,适合各种行业的仓库管理系统」· Java 代码 · 共 57 行
JAVA
57 行
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 + =
减小字号Ctrl + -
显示快捷键?