📄 product.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 产品信息
* @author jonson
*
*/
public class Product extends BaseVo{
private String productid;
private String category;
private String name;
private String descn;
/**
* @return the category
*/
public String getCategory() {
return category;
}
/**
* @param category the category to set
*/
public void setCategory(String category) {
this.category = category;
}
/**
* @return the descn
*/
public String getDescn() {
return descn;
}
/**
* @param descn the descn to set
*/
public void setDescn(String descn) {
this.descn = descn;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the productid
*/
public String getProductid() {
return productid;
}
/**
* @param productid the productid to set
*/
public void setProductid(String productid) {
this.productid = productid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -