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

📄 comment.java

📁 点餐系统 非常好的 jsp mysql 我也是别人那里下载来的
💻 JAVA
字号:
package com.accp.dao;

import java.util.Date;

/**
 * Comment generated by MyEclipse Persistence Tools
 */

public class Comment implements java.io.Serializable {

	// Fields

	private Integer cid;

	private UserInfo userInfo;

	private Integer cgid;

	private String cip;

	private String ctitle;

	private String content;

	private Date ctime;

	private String cremark;

	private String cstandby1;

	private String cstandby2;

	// Constructors

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

	/** minimal constructor */
	public Comment(Integer cid, UserInfo userInfo, String ctitle, String content) {
		this.cid = cid;
		this.userInfo = userInfo;
		this.ctitle = ctitle;
		this.content = content;
	}

	/** full constructor */
	public Comment(Integer cid, UserInfo userInfo, Integer cgid, String cip,
			String ctitle, String content, Date ctime, String cremark,
			String cstandby1, String cstandby2) {
		this.cid = cid;
		this.userInfo = userInfo;
		this.cgid = cgid;
		this.cip = cip;
		this.ctitle = ctitle;
		this.content = content;
		this.ctime = ctime;
		this.cremark = cremark;
		this.cstandby1 = cstandby1;
		this.cstandby2 = cstandby2;
	}

	// Property accessors

	public Integer getCid() {
		return this.cid;
	}

	public void setCid(Integer cid) {
		this.cid = cid;
	}

	public UserInfo getUserInfo() {
		return this.userInfo;
	}

	public void setUserInfo(UserInfo userInfo) {
		this.userInfo = userInfo;
	}

	public Integer getCgid() {
		return this.cgid;
	}

	public void setCgid(Integer cgid) {
		this.cgid = cgid;
	}

	public String getCip() {
		return this.cip;
	}

	public void setCip(String cip) {
		this.cip = cip;
	}

	public String getCtitle() {
		return this.ctitle;
	}

	public void setCtitle(String ctitle) {
		this.ctitle = ctitle;
	}

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

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

	public Date getCtime() {
		return this.ctime;
	}

	public void setCtime(Date ctime) {
		this.ctime = ctime;
	}

	public String getCremark() {
		return this.cremark;
	}

	public void setCremark(String cremark) {
		this.cremark = cremark;
	}

	public String getCstandby1() {
		return this.cstandby1;
	}

	public void setCstandby1(String cstandby1) {
		this.cstandby1 = cstandby1;
	}

	public String getCstandby2() {
		return this.cstandby2;
	}

	public void setCstandby2(String cstandby2) {
		this.cstandby2 = cstandby2;
	}

}

⌨️ 快捷键说明

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