📄 clientestimate.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 + -