gbs_countryproducthandling_stbean.java
来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 171 行
JAVA
171 行
/**
* method GBS_CountryProductHandling.java
* created on 08-03-2004
*
* @author GXK
* @version 1.0
*/
package DataBean;
public class GBS_CountryProductHandling_stBean{
// --------------------------------------------------------- Instance Variables
/** handling property */
private String handling = "";
/** countryCode property */
private String countryCode = "";
/** productName property */
private String productName = "";
/** productCode property */
private String productCode = "";
/** countryName property */
private String countryName = "";
/** countryName property */
private boolean canDownload = false;
private boolean canControl = false;
private String bwCpm = "";
private String colorCpm = "";
// --------------------------------------------------------- Methods
public boolean getCanDownload() {
return canDownload;
}
public void setCanDownload(boolean canDownload) {
this.canDownload = canDownload;
}
/**
* Returns the handling.
* @return String
*/
public String getHandling() {
return handling;
}
/**
* Set the handling.
* @param handling The handling to set
*/
public void setHandling(String handling) {
this.handling = handling;
}
/**
* Returns the countryCode.
* @return String
*/
public String getCountryCode() {
return countryCode;
}
/**
* Set the countryCode.
* @param countryCode The countryCode to set
*/
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
/**
* Returns the productName.
* @return String
*/
public String getProductName() {
return productName;
}
/**
* Set the productName.
* @param productName The productName to set
*/
public void setProductName(String productName) {
this.productName = productName;
}
/**
* Returns the productCode.
* @return String
*/
public String getProductCode() {
return productCode;
}
/**
* Set the productCode.
* @param productCode The productCode to set
*/
public void setProductCode(String productCode) {
this.productCode = productCode;
}
/**
* Returns the countryName.
* @return String
*/
public String getCountryName() {
return countryName;
}
/**
* Set the countryName.
* @param countryName The countryName to set
*/
public void setCountryName(String countryName) {
this.countryName = countryName;
}
/**
* @return
*/
public String getBwCpm() {
return bwCpm;
}
/**
* @param string
*/
public void setBwCpm(String string) {
bwCpm = string;
}
/**
* @return
*/
public String getColorCpm() {
return colorCpm;
}
/**
* @param string
*/
public void setColorCpm(String string) {
colorCpm = string;
}
/**
* @return
*/
public boolean isCanControl() {
return canControl;
}
/**
* @param b
*/
public void setCanControl(boolean b) {
canControl = b;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?