systemspecialtycode.java

来自「校园管理系统 利用struts+hibernate+spring 学校管理者决」· Java 代码 · 共 63 行

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