vproductbyid.java

来自「做的是一个客户关系管理系统」· Java 代码 · 共 51 行

JAVA
51
字号
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 + =
减小字号Ctrl + -
显示快捷键?