study.java

来自「基于Java技术实现的minipacs系统,可以进行诊断信息登记, 嵌入控件查看」· Java 代码 · 共 75 行

JAVA
75
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?