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

📄 clientestimate.java

📁 一个简易的网上购物系统。具有普遍的购物功能。还有一个小型的论坛
💻 JAVA
字号:
package com.longHua.domain;

import java.util.Date;

/**
 * Clientestimate entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class ClientEstimate implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = -8969270690109079173L;
	private Integer esId;
	private Integer uid;
	private Integer productId;
	private String esTitle;
	private String esContent;
	private Date esTime;
	private String checkNot;

	// Constructors

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

	/** full constructor */
	public ClientEstimate(Integer uid, Integer productId, String esTitle,
			String esContent, Date esTime, String checkNot) {
		this.uid = uid;
		this.productId = productId;
		this.esTitle = esTitle;
		this.esContent = esContent;
		this.esTime = esTime;
		this.checkNot = checkNot;
	}

	// Property accessors

	public Integer getEsId() {
		return this.esId;
	}

	public void setEsId(Integer esId) {
		this.esId = esId;
	}

	public Integer getUid() {
		return this.uid;
	}

	public void setUid(Integer uid) {
		this.uid = uid;
	}

	public Integer getProductId() {
		return this.productId;
	}

	public void setProductId(Integer productId) {
		this.productId = productId;
	}

	public String getEsTitle() {
		return this.esTitle;
	}

	public void setEsTitle(String esTitle) {
		this.esTitle = esTitle;
	}

	public String getEsContent() {
		return this.esContent;
	}

	public void setEsContent(String esContent) {
		this.esContent = esContent;
	}

	public Date getEsTime() {
		return this.esTime;
	}

	public void setEsTime(Date esTime) {
		this.esTime = esTime;
	}

	public String getCheckNot() {
		return this.checkNot;
	}

	public void setCheckNot(String checkNot) {
		this.checkNot = checkNot;
	}

}

⌨️ 快捷键说明

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