gbs_detail_stbean.java
来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 170 行
JAVA
170 行
/*
* Created on 2004/08/09
*
*/
package DataBean;
import java.io.Serializable;
/**
* <p>Title: MIF </p>
* <p>Description: process page action<br>
* </p>
* <p> Copyright (c) 2004</p>
* @author XJL
* @version 1.0
*/
public class GBS_Detail_stBean extends GBS_TreeNoteBaseBean implements Serializable {
// --------------------------------------------------------- Instance Variables
//** model property */
private String model = "";
//** qty property */
private String qty = "";
//** currency property */
private String currency = "";
//** hardPrice property */
private String hardPrice = "";
//** cpcPrice property */
private String cpcPrice = "";
//** mcv property */
private String mcv = "";
//** installDate property */
private String installDate = "";
//** rfpRcvDate property */
private String rfpRcvDate = "";
//** memberName property */
private String memberName = "";
// --------------------------------------------------------- Methods
/**
* Returns the model.
* @return String
*/
public String getModel(){
return model;
}
/**
* Set the model.
* @param model The model to set
*/
public void setModel( String model ){
this.model = model;
}
/**
* Returns the qty.
* @return String
*/
public String getQty(){
return qty;
}
/**
* Set the qty.
* @param qty The qty to set
*/
public void setQty( String qty ){
this.qty = qty;
}
/**
* Returns the currency.
* @return String
*/
public String getCurrency(){
return currency;
}
/**
* Set the currency.
* @param currency The currency to set
*/
public void setCurrency( String currency ){
this.currency = currency;
}
/**
* Returns the hardPrice.
* @return String
*/
public String getHardPrice(){
return hardPrice;
}
/**
* Set the hardPrice.
* @param hardPrice The hardPrice to set
*/
public void setHardPrice( String hardPrice ){
this.hardPrice = hardPrice;
}
/**
* Returns the cpcPrice.
* @return String
*/
public String getCpcPrice(){
return cpcPrice;
}
/**
* Set the cpcPrice.
* @param cpcPrice The cpcPrice to set
*/
public void setCpcPrice( String cpcPrice ){
this.cpcPrice = cpcPrice;
}
/**
* Returns the mcv.
* @return String
*/
public String getMcv(){
return mcv;
}
/**
* Set the mcv.
* @param mcv The mcv to set
*/
public void setMcv( String mcv ){
this.mcv = mcv;
}
/**
* Returns the installDate.
* @return String
*/
public String getInstallDate(){
return installDate;
}
/**
* Set the installDate.
* @param installDate The installDate to set
*/
public void setInstallDate( String installDate ){
this.installDate = installDate;
}
/**
* Returns the rfpRcvDate.
* @return String
*/
public String getRfpRcvDate(){
return rfpRcvDate;
}
/**
* Set the rfpRcvDate.
* @param rfpRcvDate The rfpRcvDate to set
*/
public void setRfpRcvDate( String rfpRcvDate ){
this.rfpRcvDate = rfpRcvDate;
}
/**
* Returns the memberName.
* @return String
*/
public String getMemberName(){
return memberName;
}
/**
* Set the memberName.
* @param memberName The memberName to set
*/
public void setMemberName( String memberName ){
this.memberName = memberName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?