txif.java

来自「struts+hibernate3的源程序」· Java 代码 · 共 84 行

JAVA
84
字号
package org.helpsoft.entity.tx;


/**
 * The TxIf interfaces exposes the persistence data.
 *
 * @author cao guangxin
 */
public interface TxIf {

    /**
     * Return the primary key.
     *
     * @return java.lang.String he primary key.
     */
    java.lang.String getPrimaryKey();

    /**
     * Set the primary key.
     *
     * @param pk return java.lang.String with the primary key.
     */
    void setPrimaryKey(java.lang.String pk);


   /**
    * Returns the value of the <code>txbh</code> property.
    *
    * @return the value of the <code>txbh</code> property
    */
   java.lang.String getTxbh();

   /**
    * Sets the value of the <code>txbh</code> property.
    *
    * @param txbh the value for the <code>txbh</code> property
    */
   void setTxbh(java.lang.String txbh);

   /**
    * Returns the value of the <code>txmc</code> property.
    *
    * @return the value of the <code>txmc</code> property
    */
   java.lang.String getTxmc();

   /**
    * Sets the value of the <code>txmc</code> property.
    *
    * @param txmc the value for the <code>txmc</code> property
    */
   void setTxmc(java.lang.String txmc);

   /**
    * Returns the value of the <code>qtsz</code> property.
    *
    * @return the value of the <code>qtsz</code> property
    */
   java.lang.String getQtsz();

   /**
    * Sets the value of the <code>qtsz</code> property.
    *
    * @param qtsz the value for the <code>qtsz</code> property
    */
   void setQtsz(java.lang.String qtsz);

   /**
    * Returns the value of the <code>sfky</code> property.
    *
    * @return the value of the <code>sfky</code> property
    */
   java.lang.String getSfky();

   /**
    * Sets the value of the <code>sfky</code> property.
    *
    * @param sfky the value for the <code>sfky</code> property
    */
   void setSfky(java.lang.String sfky);


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?