package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* (McsEvaluate)表实体类
|
*
|
* @author makejava
|
* @since 2021-12-28 14:37:08
|
*/
|
@Data
|
@TableName(value = "mcs_evaluate")
|
@SuppressWarnings("serial")
|
public class McsEvaluate implements Serializable {
|
private static final long serialVersionUID = -64045498558186286L;
|
|
private Long id;
|
/**
|
* 戳戳券码id
|
*/
|
private Long couponId;
|
/**
|
* 所属游戏id
|
*/
|
private Long gameId;
|
/**
|
* 评价用户id
|
*/
|
private Long userId;
|
/**
|
* 评分(1.差 2.一般 3.还不错 4.很满意 5.强烈推荐)
|
*/
|
private Integer star;
|
/**
|
* 评价内容
|
*/
|
private String content;
|
/**
|
* 评价图片(多张逗号隔开)
|
*/
|
private String photos;
|
/**
|
* 评价时间
|
*/
|
private Date createdAt;
|
|
}
|