commentt.java

来自「struts+hibernate模式的在线信息发布系统」· Java 代码 · 共 29 行

JAVA
29
字号
package po.comment;
// Generated by MyEclipse - Hibernate Tools

import java.util.Date;


/**
 * Commentt generated by MyEclipse - Hibernate Tools
 */
public class Commentt extends AbstractCommentt implements java.io.Serializable {

    // Constructors

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

	/** minimal constructor */
    public Commentt(Integer commentId) {
        super(commentId);        
    }
    
    /** full constructor */
    public Commentt(Integer commentId, Integer newsId, String content, String author, Date time) {
        super(commentId, newsId, content, author, time);        
    }
   
}

⌨️ 快捷键说明

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