package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 管理员表
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2017-07-11
|
*/
|
@TableName("t_feedback")
|
@Data
|
public class FeedBack extends Model<FeedBack> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value="id", type= IdType.AUTO)
|
private Integer id;
|
/**
|
* 用户id
|
*/
|
@TableField("app_user_id")
|
private Integer appUserId;
|
/**
|
* 反馈内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 反馈内容
|
*/
|
@TableField("insertTime")
|
private Date insertTime;
|
|
@Override
|
protected Serializable pkVal() {
|
return null;
|
}
|
}
|