package com.panzhihua.service_community.entity;
|
|
import java.util.Date;
|
import java.io.Serializable;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 随手拍、微心愿评价表(ComActEasyPhotoEvaluate)实体类
|
*
|
* @author lyq
|
* @since 2022-03-01 13:44:23
|
*/
|
@Data
|
@TableName("com_act_easy_photo_evaluate")
|
public class ComActEasyPhotoEvaluate implements Serializable {
|
private static final long serialVersionUID = -10187231854376444L;
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
/**
|
* 业务记录id
|
*/
|
private Long serviceId;
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
/**
|
* 评分
|
*/
|
private Integer score;
|
/**
|
* 评价内容
|
*/
|
private String content;
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
/**
|
* 业务分类(1.随手拍 2.微心愿)
|
*/
|
private Integer serviceType;
|
|
/**
|
* 业务分类(1.随手拍 2.微心愿)
|
*/
|
public interface ServiceType{
|
int SSP = 1;
|
int WXY = 2;
|
}
|
|
}
|