gbs_subsidiarydetail_stbean.java
来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 96 行
JAVA
96 行
/*
* 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_SubsidiaryDetail_stBean extends GBS_TreeNoteBaseBean implements Serializable {
// --------------------------------------------------------- Instance Variables
/** subsidiaryCode property */
private String subsidiaryCode = "";
/** subsidiaryName property */
private String subsidiaryName = "";
/** atchFiletype property */
private String atchFiletype = "";
/** remarks property */
private String remarks = "";
// --------------------------------------------------------- Methods
/**
* Returns the subsidiaryCode.
* @return String
*/
public String getSubsidiaryCode(){
return subsidiaryCode;
}
/**
* Set the subsidiaryCode.
* @param subsidiaryCode The subsidiaryCode to set
*/
public void setSubsidiaryCode( String subsidiaryCode ){
this.subsidiaryCode = subsidiaryCode;
}
/**
* Returns the subsidiaryName.
* @return String
*/
public String getSubsidiaryName(){
return subsidiaryName;
}
/**
* Set the subsidiaryName.
* @param subsidiaryName The subsidiaryName to set
*/
public void setSubsidiaryName( String subsidiaryName ){
this.subsidiaryName = subsidiaryName;
}
/**
* Returns the atchFiletype.
* @return String
*/
public String getAtchFiletype(){
return atchFiletype;
}
/**
* Set the atchFiletype.
* @param atchFiletype The atchFiletype to set
*/
public void setAtchFiletype( String atchFiletype ){
this.atchFiletype = atchFiletype;
}
/**
* Returns the remarks.
* @return String
*/
public String getRemarks(){
return remarks;
}
/**
* Set the remarks.
* @param remarks The remarks to set
*/
public void setRemarks( String remarks ){
this.remarks = remarks;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?