📄 categorysearchform.java
字号:
/**
*
*/
package com.eshop.form;
/**
* 商品类别查询Form
* @author jonson
*
*/
public class CategorySearchForm {
private String catid;//类别编号
private String name ;//类别名称
private String descn;//类别描述
/**
* @return the catid
*/
public String getCatid() {
return catid;
}
/**
* @param catid the catid to set
*/
public void setCatid(String catid) {
this.catid = catid;
}
/**
* @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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -