180 lines
2.6 KiB
Plaintext
180 lines
2.6 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import java.util.Date;
|
|
|
|
import org.hibernate.validator.constraints.NotBlank;
|
|
|
|
/**
|
|
* GreenHaircutComment
|
|
* @author dell
|
|
*/
|
|
public class GreenHaircutComment implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*主键ID
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*理发预约详情、洗车预约详情 id
|
|
*/
|
|
private Long detailId;
|
|
|
|
/**
|
|
* 评论类型 1 理发评论 2 洗车评论
|
|
*/
|
|
private String type;
|
|
|
|
/**
|
|
*预约人姓名
|
|
*/
|
|
private String applicantName;
|
|
|
|
/**
|
|
*满意度
|
|
*/
|
|
private Long satisfiedLevel;
|
|
|
|
/**
|
|
*评价内容
|
|
*/
|
|
@NotBlank(message="评价内容不能为空")
|
|
private String commentContent;
|
|
|
|
/**
|
|
*用户ID
|
|
*/
|
|
private String userId;
|
|
|
|
/**
|
|
*创建者
|
|
*/
|
|
private String creator;
|
|
|
|
/**
|
|
*修改者
|
|
*/
|
|
private String modifier;
|
|
|
|
/**
|
|
*创建时间
|
|
*/
|
|
private Date gmtCreated;
|
|
|
|
/**
|
|
*修改时间
|
|
*/
|
|
private Date gmtModified;
|
|
|
|
/**
|
|
*是否删除YN默认N
|
|
*/
|
|
private String isDeleted;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getDetailId() {
|
|
return detailId;
|
|
}
|
|
|
|
public void setDetailId(Long detailId) {
|
|
this.detailId = detailId;
|
|
}
|
|
|
|
public String getApplicantName() {
|
|
return applicantName;
|
|
}
|
|
|
|
public void setApplicantName(String applicantName) {
|
|
this.applicantName = applicantName;
|
|
}
|
|
|
|
public Long getSatisfiedLevel() {
|
|
return satisfiedLevel;
|
|
}
|
|
|
|
public void setSatisfiedLevel(Long satisfiedLevel) {
|
|
this.satisfiedLevel = satisfiedLevel;
|
|
}
|
|
|
|
public String getCommentContent() {
|
|
return commentContent;
|
|
}
|
|
|
|
public void setCommentContent(String commentContent) {
|
|
this.commentContent = commentContent;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public String getCreator() {
|
|
return creator;
|
|
}
|
|
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
}
|
|
|
|
public String getModifier() {
|
|
return modifier;
|
|
}
|
|
|
|
public void setModifier(String modifier) {
|
|
this.modifier = modifier;
|
|
}
|
|
|
|
public Date getGmtCreated() {
|
|
return gmtCreated;
|
|
}
|
|
|
|
public void setGmtCreated(Date gmtCreated) {
|
|
this.gmtCreated = gmtCreated;
|
|
}
|
|
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
}
|
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
}
|
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
|
|
}
|