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

📄 about.java

📁 彩铃小项目的原代码 下载
💻 JAVA
字号:
package hibernate.iml;

import java.util.Date;


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

public class About  implements java.io.Serializable {


    // Fields    

     private String id;
     private String title;
     private String detail;
     private Date sysdate;


    // Constructors

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

	/** minimal constructor */
    public About(String title) {
        this.title = title;
    }
    
    /** full constructor */
    public About(String title, String detail, Date sysdate) {
        this.title = title;
        this.detail = detail;
        this.sysdate = sysdate;
    }

   
    // Property accessors

    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }

    public String getTitle() {
        return this.title;
    }
    
    public void setTitle(String title) {
        this.title = title;
    }

    public String getDetail() {
        return this.detail;
    }
    
    public void setDetail(String detail) {
        this.detail = detail;
    }

    public Date getSysdate() {
        return this.sysdate;
    }
    
    public void setSysdate(Date sysdate) {
        this.sysdate = sysdate;
    }
   








}

⌨️ 快捷键说明

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