📄 tempbean.java
字号:
/**
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -