青羊经侦大队-数据平台
安瑾然
2022-07-13 68985c22a03d280a96e89f4d0e67f144259fab92
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.example.jz.modle.entity;
 
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
 
/**
 * 报案表(Report)表实体类
 *
 * @author makejava
 * @since 2022-07-13 11:52:58
 */
@TableName("qyjz.report")
public class Report extends Model<Report> {
    //案件ID
    private Integer id;
    //头像地址
    private String pic;
    //报案人id
    private Integer userId;
    //是否代办 1(代办) 0(不是代办)
    private String isCommission;
    //涉案金额
    private String amountInvolved;
    //报案材料图片地址 多个用,分隔
    private String reportMaterials;
    //报案时间
    private Date reportTime;
    //报案方式
    private String reportMethod;
    //创建人id
    private Integer creator;
    //状态,1为通过 0为未审核
    private Integer status;
    //创建时间
    private Date ctime;
    //被骗时间
    private Date cheatTime;
    //补充信息
    private String information;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getPic() {
        return pic;
    }
 
    public void setPic(String pic) {
        this.pic = pic;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getIsCommission() {
        return isCommission;
    }
 
    public void setIsCommission(String isCommission) {
        this.isCommission = isCommission;
    }
 
    public String getAmountInvolved() {
        return amountInvolved;
    }
 
    public void setAmountInvolved(String amountInvolved) {
        this.amountInvolved = amountInvolved;
    }
 
    public String getReportMaterials() {
        return reportMaterials;
    }
 
    public void setReportMaterials(String reportMaterials) {
        this.reportMaterials = reportMaterials;
    }
 
    public Date getReportTime() {
        return reportTime;
    }
 
    public void setReportTime(Date reportTime) {
        this.reportTime = reportTime;
    }
 
    public String getReportMethod() {
        return reportMethod;
    }
 
    public void setReportMethod(String reportMethod) {
        this.reportMethod = reportMethod;
    }
 
    public Integer getCreator() {
        return creator;
    }
 
    public void setCreator(Integer creator) {
        this.creator = creator;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Date getCtime() {
        return ctime;
    }
 
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
 
    public Date getCheatTime() {
        return cheatTime;
    }
 
    public void setCheatTime(Date cheatTime) {
        this.cheatTime = cheatTime;
    }
 
    public String getInformation() {
        return information;
    }
 
    public void setInformation(String information) {
        this.information = information;
    }
 
    /**
     * 获取主键值
     *
     * @return 主键值
     */
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
    }