splbif.java

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

JAVA
56
字号
package org.helpsoft.entity.splb;


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

    /**
     * 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>splbbm</code> property.
    *
    * @return the value of the <code>splbbm</code> property
    */
   java.lang.String getSplbbm();

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

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

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


}

⌨️ 快捷键说明

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