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

📄 cd.java~3~

📁 我做的第一个java MIS项目
💻 JAVA~3~
字号:
package server.entity;

import java.io.Serializable;

public class Cd implements Serializable   //序列化光盘class
{
    //cd表的七列的定义:
    private int cdid;
    private int cdexist;
    private String cdname;
    private String cdtype;
    private String cdmtype;
    private String cdactor;
    private String cdnotes;

    //cd表的七列的设置操作
        //设置cdid
        public void setcdid(int cdidtemp)
        {cdid=cdidtemp;}
        //设置cdexitst
        public void setcdexist(int cdexisttemp)
        {cdexist=cdexisttemp;}
        //设置cdname
        public void setcdname(String cdnametemp)
        {cdname=cdnametemp;}
        //设置cdtype
        public void setcdtype(String cdtypetemp)
        {cdtype=cdtypetemp;}
        //设置cdmtype
        public void setcdmtype(String cdmtypetemp)
        {cdmtype=cdmtypetemp;}
        //设置cdactor
        public void setcdactor(String cdactortemp)
        {cdactor=cdactortemp;}
        //设置cdnotes
        public void setcdnotes(String cdnotestemp)
        {cdnotes=cdnotestemp;}

    //cd表的七列的得到操作
        //得到cdid
        public int getcdid()
        {return cdid;}
        //得到cdexist
        public int getcdexist()
        {return cdexist;}
        //得到cdname
        public String getcdname()
        {return cdname;}
        //得到cdtype
        public String getcdtype()
        {return cdtype;}
        //得到cdmtype
        public String getcdmtype()
        {return cdmtype;}
        //得到cdactor
        public String getcdactor()
        {return cdactor;}
        //得到cdnotes
        public String getcdnotes()
        {return cdnotes;}
}

⌨️ 快捷键说明

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