📄 serviceorderform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.yuanchung.sales.struts.service.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
/**
* MyEclipse Struts
* Creation date: 12-04-2008
*
* XDoclet definition:
* @struts.form name="serviceOrderForm"
*/
public class ServiceOrderForm extends ActionForm {
/*
* Generated fields
*/
/** id property */
private Integer id;
/** describe property */
private String content;
/** createTime property */
private String createTime;
/** remarks property */
private String remarks;
/** flag property */
private Integer flag;
/** serialNum property */
private String serialNum;
/** reason property */
private String reason;
/** state property */
private Integer state;
/** categoryId property */
private Integer categoryId;
private Integer faultLevelId;
private Integer sourceId;
private Integer customerId;
private Integer contactId;
/** satisfaction property */
private String satisfaction;
private String visitTime;
private String timeSliceStr;
private FormFile formFile;
/*
* 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 id.
* @return Integer
*/
public Integer getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* Returns the createTime.
* @return String
*/
public String getCreateTime() {
return createTime;
}
/**
* Set the createTime.
* @param createTime The createTime to set
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* Returns the remarks.
* @return String
*/
public String getRemarks() {
return remarks;
}
/**
* Set the remarks.
* @param remarks The remarks to set
*/
public void setRemarks(String remarks) {
this.remarks = remarks;
}
/**
* Returns the flag.
* @return Integer
*/
public Integer getFlag() {
return flag;
}
/**
* Set the flag.
* @param flag The flag to set
*/
public void setFlag(Integer flag) {
this.flag = flag;
}
/**
* Returns the serialNum.
* @return String
*/
public String getSerialNum() {
return serialNum;
}
/**
* Set the serialNum.
* @param serialNum The serialNum to set
*/
public void setSerialNum(String serialNum) {
this.serialNum = serialNum;
}
/**
* Returns the reason.
* @return String
*/
public String getReason() {
return reason;
}
/**
* Set the reason.
* @param reason The reason to set
*/
public void setReason(String reason) {
this.reason = reason;
}
/**
* Returns the state.
* @return Integer
*/
public Integer getState() {
return state;
}
/**
* Set the state.
* @param state The state to set
*/
public void setState(Integer state) {
this.state = state;
}
/**
* Returns the categoryId.
* @return Integer
*/
public Integer getCategoryId() {
return categoryId;
}
/**
* Set the categoryId.
* @param categoryId The categoryId to set
*/
public void setCategoryId(Integer categoryId) {
this.categoryId = categoryId;
}
/**
* Returns the satisfaction.
* @return Integer
*/
public String getSatisfaction() {
return satisfaction;
}
/**
* Set the satisfaction.
* @param satisfaction The satisfaction to set
*/
public void setSatisfaction(String satisfaction) {
this.satisfaction = satisfaction;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getVisitTime() {
return visitTime;
}
public void setVisitTime(String visitTime) {
this.visitTime = visitTime;
}
public FormFile getFormFile() {
return formFile;
}
public void setFormFile(FormFile formFile) {
this.formFile = formFile;
}
public Integer getCustomerId() {
return customerId;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
public Integer getContactId() {
return contactId;
}
public void setContactId(Integer contactId) {
this.contactId = contactId;
}
public Integer getFaultLevelId() {
return faultLevelId;
}
public void setFaultLevelId(Integer faultLevelId) {
this.faultLevelId = faultLevelId;
}
public String getTimeSliceStr() {
return timeSliceStr;
}
public void setTimeSliceStr(String timeSliceStr) {
this.timeSliceStr = timeSliceStr;
}
public Integer getSourceId() {
return sourceId;
}
public void setSourceId(Integer sourceId) {
this.sourceId = sourceId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -