package com.stylefeng.guns.modular.system.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.util.Date;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2023/11/20 15:26
|
*/
|
@Data
|
@TableName("t_report_house_resource")
|
public class ReportHouseResource {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 举报用户id
|
*/
|
@TableField("app_user_id")
|
private Integer appUserId;
|
/**
|
* 房源id
|
*/
|
@TableField("house_resource_id")
|
private Integer houseResourceId;
|
/**
|
* 举报内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 添加时间
|
*/
|
@TableField("insert_time")
|
private Date insertTime;
|
|
@TableField("audit")
|
private Integer audit;
|
@TableField("back_reason")
|
private String backReason;
|
|
@TableField("back_date")
|
private Date backDate;
|
}
|