dept.java

来自「l劳动力管理系统」· Java 代码 · 共 57 行

JAVA
57
字号
package com.hr.vo;
/**
 * @hibernate.class
 * table="T_Dept"
 *
 */
public class Dept {
    private Long deptUID;
    private String deptName;
    private String note;
    public Dept() {

    }
    /**
          * @hibernate.id
          *	column="DeptUID"
          *	generator-class="hilo"
          *	unsaved-value="null"
          */
         public Long getDeptUID() {
             return deptUID;
         }

    public void setDeptUID(Long deptUID) {
        this.deptUID = deptUID;
    }
    /**
     * @hibernate.property
     * column="DeptName"
     */
    public String getDeptName() {
         return deptName;
     }

    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
       /**
       * @hibernate.property
       * column="Note"
       */
      public String getNote() {
              return note;
    }
    public void setNote(String note) {
        this.note = note;
    }








}

⌨️ 快捷键说明

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