wiselaw.java

来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 85 行

JAVA
85
字号
package com.je.ims.hibernate;



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

public class WiseLaw  implements java.io.Serializable {


    // Fields    

     private Long wiseLawId;
     private Long year;
     private String ab;
     private String nodeId;
     private Long flag;
// Constructors

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

    
    /** full constructor */
    public WiseLaw(Long year, String ab, String nodeId, Long flag) {
        this.year = year;
        this.ab = ab;
        this.nodeId = nodeId;
        this.flag = flag;
    }

   
    // Property accessors

    public Long getWiseLawId() {
        return this.wiseLawId;
    }
    
    public void setWiseLawId(Long wiseLawId) {
        this.wiseLawId = wiseLawId;
    }

    public Long getYear() {
        return this.year;
    }
    
    public void setYear(Long year) {
        this.year = year;
    }

    public String getAb() {
        return this.ab;
    }
    
    public void setAb(String ab) {
        this.ab = ab;
    }

    public String getNodeId() {
        return this.nodeId;
    }
    
    public void setNodeId(String nodeId) {
        this.nodeId = nodeId;
    }

    public Long getFlag() {
        return this.flag;
    }
    
    public void setFlag(Long flag) {
        this.flag = flag;
    }
   








}

⌨️ 快捷键说明

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