package com.panzhihua.service_community.model.dos; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * @ClassName: ComShopFlowerEvaluate * @Author: yh * @Date: 2022/11/9 16:46 * @Description: 评价表 */ @TableName(value = "com_shop_flower_evaluate") @Data public class ComShopFlowerEvaluateDO implements Serializable { private static final long serialVersionUID = 1L; /** * ,主键 */ @TableId(type = IdType.ASSIGN_ID) private Long id; /** * 订单号 */ @TableField(value = "order_no") private String orderNo; /** * 商品id */ @TableField(value = "goods_id") private String goodsId; /** * 评价人id */ @TableField(value = "user_id") private Long userId; /** * 评价时间 */ @TableField(value = "evaluate_time") private Date evaluateTime; /** * 评价类型(5.非常满意 4.满意 3.一般 3.不满意 1.糟糕透了) */ @TableField(value = "evaluate_type") private Integer evaluateType; /** * 评价内容 */ @TableField(value = "evaluate_content") private String evaluateContent; /** * 评价图片 */ @TableField(value = "evaluate_pic") private String evaluatePic; /** * 创建时间 */ @TableField(value = "create_at",fill = FieldFill.INSERT) private Date createAt; }