⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tbtimecard.java

📁 基于java的企业人事管理系统
💻 JAVA
字号:
package com.mwq.hibernate.mapping;

import java.util.Date;


public class TbTimecard  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private TbDept tbDept;
     private TbRecord tbRecordByRecordId;
     private TbRecord tbRecordByRatifierRecordId;
     private TbAccountItem tbAccountItem;
     private String explain;
     private Date startDate;
     private Date endDate;
     private Date ratifierDate;


    // Constructors

    public TbTimecard() {
    }

    // Property accessors

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

    public TbDept getTbDept() {
        return this.tbDept;
    }
    
    public void setTbDept(TbDept tbDept) {
        this.tbDept = tbDept;
    }

    public TbRecord getTbRecordByRecordId() {
        return this.tbRecordByRecordId;
    }
    
    public void setTbRecordByRecordId(TbRecord tbRecordByRecordId) {
        this.tbRecordByRecordId = tbRecordByRecordId;
    }

    public TbRecord getTbRecordByRatifierRecordId() {
        return this.tbRecordByRatifierRecordId;
    }
    
    public void setTbRecordByRatifierRecordId(TbRecord tbRecordByRatifierRecordId) {
        this.tbRecordByRatifierRecordId = tbRecordByRatifierRecordId;
    }

    public TbAccountItem getTbAccountItem() {
        return this.tbAccountItem;
    }
    
    public void setTbAccountItem(TbAccountItem tbAccountItem) {
        this.tbAccountItem = tbAccountItem;
    }

    public String getExplain() {
        return this.explain;
    }
    
    public void setExplain(String explain) {
        this.explain = explain;
    }

    public Date getStartDate() {
        return this.startDate;
    }
    
    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }

    public Date getEndDate() {
        return this.endDate;
    }
    
    public void setEndDate(Date endDate) {
        this.endDate = endDate;
    }

    public Date getRatifierDate() {
        return this.ratifierDate;
    }
    
    public void setRatifierDate(Date ratifierDate) {
        this.ratifierDate = ratifierDate;
    }

}

⌨️ 快捷键说明

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