advicedeal.java

来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 82 行

JAVA
82
字号
package com.je.ims.hibernate;



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

public class AdviceDeal  implements java.io.Serializable {


    // Fields    

     private AdviceDealId id;
     private String recent;
     private String content;
     private String attachment;


    // Constructors

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

	/** minimal constructor */
    public AdviceDeal(AdviceDealId id) {
        this.id = id;
    }
    
    /** full constructor */
    public AdviceDeal(AdviceDealId id, String recent, String content, String attachment) {
        this.id = id;
        this.recent = recent;
        this.content = content;
        this.attachment = attachment;
    }

   
    // Property accessors

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

    public String getRecent() {
        return this.recent;
    }
    
    public void setRecent(String recent) {
        this.recent = recent;
    }

    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }

    public String getAttachment() {
        return this.attachment;
    }
    
    public void setAttachment(String attachment) {
        this.attachment = attachment;
    }
   








}

⌨️ 快捷键说明

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