splbvalue.java
来自「STRUTS数据库项目开发宝典」· Java 代码 · 共 53 行
JAVA
53 行
package org.helpsoft.entity.splb;
import java.io.Serializable;
/**
* The SplbValue objects contains all fields that are available in the storage.
*
* @author cao guangxin
*/
public class SplbValue implements Serializable {
private java.lang.String splbbm;
/**
* Returns the value of the <code>splbbm</code> property.
*
* @return the value of the <code>splbbm</code> property.
*/
public java.lang.String getSplbbm() {
return splbbm;
}
/**
* Sets the value of the <code>splbbm</code> property.
*
* @param splbbm a value for <code>splbbm</code>.
*/
public void setSplbbm(java.lang.String splbbm) {
this.splbbm = splbbm;
}
private java.lang.String splbmc;
/**
* Returns the value of the <code>splbmc</code> property.
*
* @return the value of the <code>splbmc</code> property.
*/
public java.lang.String getSplbmc() {
return splbmc;
}
/**
* Sets the value of the <code>splbmc</code> property.
*
* @param splbmc a value for <code>splbmc</code>.
*/
public void setSplbmc(java.lang.String splbmc) {
this.splbmc = splbmc;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?