?? businessopportunityvo.java
字號:
package com.yuanchung.sales.vo.busiOpport;
import com.yuanchung.sales.model.customer.Customer;
import com.yuanchung.sales.model.user.User;
public class BusinessOpportunityVo implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = 3292738484150333139L;
private Integer id;
private User user;
private Customer customer;
private String busiOpportName;
private String businessDescribe;
private String involveProduct;
private String creatDate;
private String preTransactionDate;
private String completeTime;
private String stageOf;
private float probability;
private double predictAmount;
private String decisionMan;
private String competeDescribe;
private int customerId;
private String customerName;
private Integer flag;
private String lastModifyTime;
private Integer modifyManId;
//2009-02-20 add 數據范圍標識
private String delRights = "n";
private String modifyRights = "n";
//end
public BusinessOpportunityVo(Integer id, String busiOpportName,
String preTransactionDate, String stageOf, int customerId,
String customerName, User user) {
this.id = id;
this.busiOpportName = busiOpportName;
this.preTransactionDate = preTransactionDate;
this.stageOf = stageOf;
this.customerId = customerId;
this.customerName = customerName;
this.user = user;
}
public int getCustomerId() {
return customerId;
}
public void setCustomerId(int customerId) {
this.customerId = customerId;
}
public BusinessOpportunityVo() {
}
public BusinessOpportunityVo(Integer id, String busiOpportName) {
this.id = id;
this.busiOpportName = busiOpportName;
}
public BusinessOpportunityVo(Integer id, String busiOpportName,String customerName) {
this.id = id;
this.busiOpportName = busiOpportName;
this.customerName = customerName;
}
public BusinessOpportunityVo(Integer id, Customer customer,
String busiOpportName, String stageOf, String preTransactionDate,String delRights,String modifyRights) {
this.id = id;
this.customer = customer;
this.busiOpportName = busiOpportName;
this.stageOf = stageOf;
this.preTransactionDate = preTransactionDate;
this.delRights = delRights;
this.modifyRights = modifyRights;
}
public BusinessOpportunityVo(Integer id, Customer customer,
String busiOpportName, String stageOf, String preTransactionDate) {
this.id = id;
this.customer = customer;
this.busiOpportName = busiOpportName;
this.stageOf = stageOf;
this.preTransactionDate = preTransactionDate;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
public String getBusiOpportName() {
return busiOpportName;
}
public void setBusiOpportName(String busiOpportName) {
this.busiOpportName = busiOpportName;
}
public String getBusinessDescribe() {
return businessDescribe;
}
public void setBusinessDescribe(String businessDescribe) {
this.businessDescribe = businessDescribe;
}
public String getInvolveProduct() {
return involveProduct;
}
public void setInvolveProduct(String involveProduct) {
this.involveProduct = involveProduct;
}
public String getCreatDate() {
return creatDate;
}
public void setCreatDate(String creatDate) {
this.creatDate = creatDate;
}
public String getPreTransactionDate() {
return preTransactionDate;
}
public void setPreTransactionDate(String preTransactionDate) {
this.preTransactionDate = preTransactionDate;
}
public String getCompleteTime() {
return completeTime;
}
public void setCompleteTime(String completeTime) {
this.completeTime = completeTime;
}
public String getStageOf() {
return stageOf;
}
public void setStageOf(String stageOf) {
this.stageOf = stageOf;
}
public float getProbability() {
return probability;
}
public void setProbability(float probability) {
this.probability = probability;
}
public double getPredictAmount() {
return predictAmount;
}
public void setPredictAmount(double predictAmount) {
this.predictAmount = predictAmount;
}
public String getDecisionMan() {
return decisionMan;
}
public void setDecisionMan(String decisionMan) {
this.decisionMan = decisionMan;
}
public String getCompeteDescribe() {
return competeDescribe;
}
public void setCompeteDescribe(String competeDescribe) {
this.competeDescribe = competeDescribe;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public Integer getFlag() {
return flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
public String getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
public Integer getModifyManId() {
return modifyManId;
}
public void setModifyManId(Integer modifyManId) {
this.modifyManId = modifyManId;
}
public BusinessOpportunityVo(Integer id, User user, Customer customer,
String busiOpportName, String businessDescribe,
String involveProduct, String creatDate, String preTransactionDate,
String completeTime, String stageOf, float probability,
double predictAmount, String decisionMan, String competeDescribe,
String customerName, Integer flag, String lastModifyTime,
Integer modifyManId) {
super();
this.id = id;
this.user = user;
this.customer = customer;
this.busiOpportName = busiOpportName;
this.businessDescribe = businessDescribe;
this.involveProduct = involveProduct;
this.creatDate = creatDate;
this.preTransactionDate = preTransactionDate;
this.completeTime = completeTime;
this.stageOf = stageOf;
this.probability = probability;
this.predictAmount = predictAmount;
this.decisionMan = decisionMan;
this.competeDescribe = competeDescribe;
this.customerName = customerName;
this.flag = flag;
this.lastModifyTime = lastModifyTime;
this.modifyManId = modifyManId;
}
public String getDelRights() {
return delRights;
}
public void setDelRights(String delRights) {
this.delRights = delRights;
}
public String getModifyRights() {
return modifyRights;
}
public void setModifyRights(String modifyRights) {
this.modifyRights = modifyRights;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -