?? consultationform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.zhou.struts.form;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 09-21-2007
*
* XDoclet definition:
* @struts.form name="consultationForm"
*/
public class ConsultationForm extends ActionForm {
/*
* Generated fields
*/
/** cage property */
private Integer cage;
/** cremark property */
private String cremark;
/** sid property */
private Integer sid;
/** cate property */
private Date cate;
/** caddress property */
private String caddress;
/** cinfoname property */
private String cinfoname;
/** csex property */
private String csex;
/** cid property */
private Integer cid;
/** userid property */
private Integer userid;
/** ceducationin property */
private String ceducationin;
/** centered property */
private String centered;
/** ctype property */
private String ctype;
/** ctel property */
private String ctel;
/** cclass property */
private String cclass;
/** cschool property */
private String cschool;
/** cname property */
private String cname;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
* Returns the cage.
* @return String
*/
public Integer getCage() {
return cage;
}
/**
* Set the cage.
* @param cage The cage to set
*/
public void setCage(Integer cage) {
this.cage = cage;
}
/**
* Returns the cremark.
* @return String
*/
public String getCremark() {
return cremark;
}
/**
* Set the cremark.
* @param cremark The cremark to set
*/
public void setCremark(String cremark) {
this.cremark = cremark;
}
/**
* Returns the sid.
* @return Integer
*/
public Integer getSid() {
return sid;
}
/**
* Set the sid.
* @param sid The sid to set
*/
public void setSid(Integer sid) {
this.sid = sid;
}
/**
* Returns the cate.
* @return Date
*/
public Date getCate() {
return cate;
}
/**
* Set the cate.
* @param cate The cate to set
*/
public void setCate(Date cate) {
this.cate = cate;
}
/**
* Returns the caddress.
* @return String
*/
public String getCaddress() {
return caddress;
}
/**
* Set the caddress.
* @param caddress The caddress to set
*/
public void setCaddress(String caddress) {
this.caddress = caddress;
}
/**
* Returns the cinfoname.
* @return String
*/
public String getCinfoname() {
return cinfoname;
}
/**
* Set the cinfoname.
* @param cinfoname The cinfoname to set
*/
public void setCinfoname(String cinfoname) {
this.cinfoname = cinfoname;
}
/**
* Returns the csex.
* @return String
*/
public String getCsex() {
return csex;
}
/**
* Set the csex.
* @param csex The csex to set
*/
public void setCsex(String csex) {
this.csex = csex;
}
/**
* Returns the cid.
* @return Integer
*/
public Integer getCid() {
return cid;
}
/**
* Set the cid.
* @param cid The cid to set
*/
public void setCid(Integer cid) {
this.cid = cid;
}
/**
* Returns the userid.
* @return Integer
*/
public Integer getUserid() {
return userid;
}
/**
* Set the userid.
* @param userid The userid to set
*/
public void setUserid(Integer userid) {
this.userid = userid;
}
/**
* Returns the ceducatioin.
* @return String
*/
public String getCeducationin() {
return ceducationin;
}
/**
* Set the ceducatioin.
* @param ceducatioin The ceducatioin to set
*/
public void setCeducationin(String ceducationin) {
this.ceducationin = ceducationin;
}
/**
* Returns the centered.
* @return String
*/
public String getCentered() {
return centered;
}
/**
* Set the centered.
* @param centered The centered to set
*/
public void setCentered(String centered) {
this.centered = centered;
}
/**
* Returns the ctype.
* @return String
*/
public String getCtype() {
return ctype;
}
/**
* Set the ctype.
* @param ctype The ctype to set
*/
public void setCtype(String ctype) {
this.ctype = ctype;
}
/**
* Returns the ctel.
* @return String
*/
public String getCtel() {
return ctel;
}
/**
* Set the ctel.
* @param ctel The ctel to set
*/
public void setCtel(String ctel) {
this.ctel = ctel;
}
/**
* Returns the cclass.
* @return String
*/
public String getCclass() {
return cclass;
}
/**
* Set the cclass.
* @param cclass The cclass to set
*/
public void setCclass(String cclass) {
this.cclass = cclass;
}
/**
* Returns the cschool.
* @return String
*/
public String getCschool() {
return cschool;
}
/**
* Set the cschool.
* @param cschool The cschool to set
*/
public void setCschool(String cschool) {
this.cschool = cschool;
}
/**
* Returns the cname.
* @return String
*/
public String getCname() {
return cname;
}
/**
* Set the cname.
* @param cname The cname to set
*/
public void setCname(String cname) {
this.cname = cname;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -