📄 vproductbyid.java
字号:
package com.accp.dao;
public class VProductById implements java.io.Serializable {
private String pname;
private String punit;
private Double pprice;
private Double psumprice;
private Long poid;
private String pcount;
public String getPcount() {
return pcount;
}
public void setPcount(String pcount) {
this.pcount = pcount;
}
public String getPname() {
return pname;
}
public void setPname(String pname) {
this.pname = pname;
}
public Long getPoid() {
return poid;
}
public void setPoid(Long poid) {
this.poid = poid;
}
public Double getPprice() {
return pprice;
}
public void setPprice(Double pprice) {
this.pprice = pprice;
}
public Double getPsumprice() {
return psumprice;
}
public void setPsumprice(Double psumprice) {
this.psumprice = psumprice;
}
public String getPunit() {
return punit;
}
public void setPunit(String punit) {
this.punit = punit;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -