hv.java

来自「上网计费系统,适用网吧或者自己学习用用JAVA写成」· Java 代码 · 共 57 行

JAVA
57
字号
package com.briup.dao.bean;



/**
 * Hv generated by MyEclipse - Hibernate Tools
 */

public class Hv  implements java.io.Serializable {


    // Fields    

     private Long id;
     private Long highvalue;


    // Constructors

    /** default constructor */
    public Hv() {
    }

    
    /** full constructor */
    public Hv(Long highvalue) {
        this.highvalue = highvalue;
    }

   
    // Property accessors

    public Long getId() {
        return this.id;
    }
    
    public void setId(Long id) {
        this.id = id;
    }

    public Long getHighvalue() {
        return this.highvalue;
    }
    
    public void setHighvalue(Long highvalue) {
        this.highvalue = highvalue;
    }
   








}

⌨️ 快捷键说明

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