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

📄 operationschedule.java

📁 简单的医院系统
💻 JAVA
字号:
package com.tsinghuait.st0717.hospitalsystem.dto;

import java.util.Date;


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

public class OperationSchedule  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private Integer operationRoomId;
     private Integer operationId;
     private Date startTime;
     private Date endTime;


    // Constructors

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

	/** minimal constructor */
    public OperationSchedule(Integer id) {
        this.id = id;
    }
    
    /** full constructor */
    public OperationSchedule(Integer id, Integer operationRoomId, Integer operationId, Date startTime, Date endTime) {
        this.id = id;
        this.operationRoomId = operationRoomId;
        this.operationId = operationId;
        this.startTime = startTime;
        this.endTime = endTime;
    }

   
    // Property accessors

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

    public Integer getOperationRoomId() {
        return this.operationRoomId;
    }
    
    public void setOperationRoomId(Integer operationRoomId) {
        this.operationRoomId = operationRoomId;
    }

    public Integer getOperationId() {
        return this.operationId;
    }
    
    public void setOperationId(Integer operationId) {
        this.operationId = operationId;
    }

    public Date getStartTime() {
        return this.startTime;
    }
    
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }

    public Date getEndTime() {
        return this.endTime;
    }
    
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
   








}

⌨️ 快捷键说明

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