luo
2023-12-09 cb5ddf074d60b72e35ee4bafaec95530f53d1839
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
}