问题反馈
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("sys_feedback")
|
||||
public class SysFeedback {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private String account;
|
||||
|
||||
private String type;
|
||||
|
||||
private String content;
|
||||
|
||||
private String image;
|
||||
|
||||
private String contactInformation;
|
||||
|
||||
private String relation;
|
||||
|
||||
private String status;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user