tempbean.java
来自「网上购物源代码」· Java 代码 · 共 39 行
JAVA
39 行
/**
*
*/
package com.chinaaccpbean;
/**
* @author Administrator
*
*/
public class TempBean {
private int productid;
private int count;
/**
* @return count
*/
public int getCount() {
return count;
}
/**
* @param count 要设置的 count
*/
public void setCount(int count) {
this.count = count;
}
/**
* @return productid
*/
public int getProductid() {
return productid;
}
/**
* @param productid 要设置的 productid
*/
public void setProductid(int productid) {
this.productid = productid;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?