package com.mindskip.xzs.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author gonghl
|
* @TableName t_feedback
|
*/
|
@TableName(value = "t_feedback")
|
@Data
|
public class Feedback implements Serializable {
|
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
private Integer questionId;
|
|
private Integer contentId;
|
|
@TableField(value = "`describe`")
|
private String describe;
|
|
private Integer userId;
|
|
private Boolean fix;
|
|
private LocalDateTime fixTime;
|
|
@TableLogic
|
private Boolean deleted;
|
|
private static final long serialVersionUID = 1L;
|
}
|