cityform.java
来自「一个很不错的电子商务后台管理系统 这是一个电子商务网站的后台管理系统 要」· Java 代码 · 共 64 行
JAVA
64 行
package xian.bin.city;import org.apache.struts.action.*;import java.util.*;import javax.servlet.http.*;public class CityForm extends ActionForm { private String city; private Collection shengs; private int cno; private int corder; private int sheng; private int cid; private java.util.Collection citys; public String getCity() { return city; } public void setCity(String city) { this.city = city; } public int getCno() { return cno; } public void setCno(int cno) { this.cno = cno; } public int getCorder() { return corder; } public void setCorder(int corder) { this.corder = corder; } public int getSheng() { return sheng; } public void setSheng(int sheng) { this.sheng = sheng; } public Collection getShengs() { return shengs; } public void setShengs(Collection shengs) { this.shengs = shengs; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { } public int getCid() { return cid; } public void setCid(int cid) { this.cid = cid; } public java.util.Collection getCitys() { return citys; } public void setCitys(java.util.Collection citys) { this.citys = citys; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?