123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- package com.fdkankan.manage.entity;
- import com.alibaba.fastjson.JSONArray;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- import com.fdkankan.manage.common.typehandle.JsonArrayTypeHandler;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2024-01-24
- */
- @Getter
- @Setter
- @TableName(value = "t_feedback",autoResultMap = true)
- public class Feedback implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 问题描述
- */
- @TableField("problem_desc")
- private String problemDesc;
- @TableField(typeHandler= JsonArrayTypeHandler.class)
- private JSONArray problemDescImgs;
- /**
- * 硬件产品id
- */
- @TableField("hardware_option_id")
- private Integer hardwareOptionId;
- /**
- * 软件产品id
- */
- @TableField("software_option_id")
- private Integer softwareOptionId;
- /**
- * 所在行业id
- */
- @TableField("industry_option_id")
- private Integer industryOptionId;
- /**
- * 解决方案
- */
- @TableField("solution")
- private String solution;
- @TableField(typeHandler= JsonArrayTypeHandler.class)
- private JSONArray solutionImgs;
- /**
- * 姓名
- */
- @TableField("nick_name")
- private String nickName;
- /**
- * 联系方式
- */
- @TableField("phone")
- private String phone;
- /**
- * 地址
- */
- @TableField("address")
- private String address;
- /**
- * 评分
- */
- @TableField("score")
- private BigDecimal score;
- /**
- * 评分理由
- */
- @TableField("score_reason")
- private String scoreReason;
- /**
- * 处理状态 0未处理,1已处理
- */
- @TableField("status")
- private Integer status;
- /**
- * 处理结果
- */
- @TableField("result")
- private String result;
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- /**
- * 硬件产品id
- */
- @TableField(exist = false)
- private Object hardwareOption;
- /**
- * 软件产品id
- */
- @TableField(exist = false)
- private Object softwareOption;
- /**
- * 所在行业id
- */
- @TableField(exist = false)
- private Object industryOption;
- }
|