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

📄 systemspecialtycode.java

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



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

public class SystemSpecialtyCode  implements java.io.Serializable {


    // Fields    

     private String spCode;
     private String name;


    // Constructors

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

	/** minimal constructor */
    public SystemSpecialtyCode(String spCode) {
        this.spCode = spCode;
    }
    
    /** full constructor */
    public SystemSpecialtyCode(String spCode, String name) {
        this.spCode = spCode;
        this.name = name;
    }
    

   
    // Property accessors

    public String getSpCode() {
        return this.spCode;
    }
    
    public void setSpCode(String spCode) {
        this.spCode = spCode;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
   








}

⌨️ 快捷键说明

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