txvalue.java
来自「STRUTS数据库项目开发宝典」· Java 代码 · 共 93 行
JAVA
93 行
package org.helpsoft.entity.tx;
import java.io.Serializable;
/**
* The TxValue objects contains all fields that are available in the storage.
*
* @author cao guangxin
*/
public class TxValue implements Serializable {
private java.lang.String txbh;
/**
* Returns the value of the <code>txbh</code> property.
*
* @return the value of the <code>txbh</code> property.
*/
public java.lang.String getTxbh() {
return txbh;
}
/**
* Sets the value of the <code>txbh</code> property.
*
* @param txbh a value for <code>txbh</code>.
*/
public void setTxbh(java.lang.String txbh) {
this.txbh = txbh;
}
private java.lang.String txmc;
/**
* Returns the value of the <code>txmc</code> property.
*
* @return the value of the <code>txmc</code> property.
*/
public java.lang.String getTxmc() {
return txmc;
}
/**
* Sets the value of the <code>txmc</code> property.
*
* @param txmc a value for <code>txmc</code>.
*/
public void setTxmc(java.lang.String txmc) {
this.txmc = txmc;
}
private java.lang.String qtsz;
/**
* Returns the value of the <code>qtsz</code> property.
*
* @return the value of the <code>qtsz</code> property.
*/
public java.lang.String getQtsz() {
return qtsz;
}
/**
* Sets the value of the <code>qtsz</code> property.
*
* @param qtsz a value for <code>qtsz</code>.
*/
public void setQtsz(java.lang.String qtsz) {
this.qtsz = qtsz;
}
private java.lang.String sfky;
/**
* Returns the value of the <code>sfky</code> property.
*
* @return the value of the <code>sfky</code> property.
*/
public java.lang.String getSfky() {
return sfky;
}
/**
* Sets the value of the <code>sfky</code> property.
*
* @param sfky a value for <code>sfky</code>.
*/
public void setSfky(java.lang.String sfky) {
this.sfky = sfky;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?