📄 gbs_countryproducthandling_stbean.java
字号:
/**
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -