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

📄 study.java

📁 基于Java技术实现的minipacs系统,可以进行诊断信息登记, 嵌入控件查看DICOM 影像和统计分析等功能.
💻 JAVA
字号:
/* * Study.java * * Created on 26. oktober 2005, 13:53 * * To change this template, choose Tools | Options and locate the template under * the Source Creation and Management node. Right-click the template and choose * Open. You can then make changes to the template in the Source Editor. */package backup.model;import java.lang.*;import java.io.*;import java.util.*;/** * * @author Thomas */public class Study implements Serializable {    private String studyId;    private String studyUniqueId;    private int studySize;    private String studyPath;    private long studyTime;         /** Creates a new instance of Study */    public Study(String studyUniqueId) {        this.studyUniqueId = studyUniqueId;    }        public Study(String studyUniqueId, int studySize, long studyTime) {        this.studyUniqueId = studyUniqueId;        this.studySize = studySize;        this.studyTime = studyTime;    }        public String getStudyUniqueId() {        return this.studyUniqueId;    }        public String getStudyId() {        return this.studyId;    }    public int getStudySize() {        return this.studySize;    }        public String getStudyPath() {        return this.studyPath;    }        public long getStudyTime() {        return this.studyTime;    }        public void setStudyId(String studyId) {        this.studyId = studyId;    }        public void setStudySize(int studySize) {        this.studySize = studySize;    }        public void setStudyPath(String studyPath) {        this.studyPath = studyPath;    }        public void setStudyTime(long studyTime) {        this.studyTime = studyTime;    }}

⌨️ 快捷键说明

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