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

📄 systemcoursecode.java

📁 校园管理系统 利用struts+hibernate+spring 学校管理者决定在学生信息管理、学生成绩管理、图书馆管理采用先进的计算机技术
💻 JAVA
字号:
package com.hibernate.model;



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

public class SystemCourseCode  implements java.io.Serializable {


    // Fields    

     private String code;
     private String subject;


    // Constructors

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

	/** minimal constructor */
    public SystemCourseCode(String code) {
        this.code = code;
    }
    
    /** full constructor */
    public SystemCourseCode(String code, String subject) {
        this.code = code;
        this.subject = subject;
    }
    

   
    // Property accessors

    public String getCode() {
        return this.code;
    }
    
    public void setCode(String code) {
        this.code = code;
    }

    public String getSubject() {
        return this.subject;
    }
    
    public void setSubject(String subject) {
        this.subject = subject;
    }
   








}

⌨️ 快捷键说明

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