bostagehistoryform.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 121 行
JAVA
121 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.yuanchung.sales.struts.busiOpport.form;
import org.apache.struts.action.ActionForm;
/**
* MyEclipse Struts
* Creation date: 02-09-2009
*
* XDoclet definition:
* @struts.form name="boStageHistoryForm"
*/
public class BoStageHistoryForm extends ActionForm {
private int id;
private String stageName;
private double predictAmount;
private float probability;
private String pretransactionDate;
private String lastModifyTime;
private Integer modifyManId;
private Integer businessOpportunityId;
/**
* @return the id
*/
public int getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(int id) {
this.id = id;
}
/**
* @return the stageName
*/
public String getStageName() {
return stageName;
}
/**
* @param stageName the stageName to set
*/
public void setStageName(String stageName) {
this.stageName = stageName;
}
/**
* @return the predictAmount
*/
public double getPredictAmount() {
return predictAmount;
}
/**
* @param predictAmount the predictAmount to set
*/
public void setPredictAmount(double predictAmount) {
this.predictAmount = predictAmount;
}
/**
* @return the probability
*/
public float getProbability() {
return probability;
}
/**
* @param probability the probability to set
*/
public void setProbability(float probability) {
this.probability = probability;
}
/**
* @return the pretransactionDate
*/
public String getPretransactionDate() {
return pretransactionDate;
}
/**
* @param pretransactionDate the pretransactionDate to set
*/
public void setPretransactionDate(String pretransactionDate) {
this.pretransactionDate = pretransactionDate;
}
/**
* @return the lastModifyTime
*/
public String getLastModifyTime() {
return lastModifyTime;
}
/**
* @param lastModifyTime the lastModifyTime to set
*/
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
/**
* @return the modifyManId
*/
public Integer getModifyManId() {
return modifyManId;
}
/**
* @param modifyManId the modifyManId to set
*/
public void setModifyManId(Integer modifyManId) {
this.modifyManId = modifyManId;
}
/**
* @return the businessOpportunityId
*/
public Integer getBusinessOpportunityId() {
return businessOpportunityId;
}
/**
* @param businessOpportunityId the businessOpportunityId to set
*/
public void setBusinessOpportunityId(Integer businessOpportunityId) {
this.businessOpportunityId = businessOpportunityId;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?