青羊经侦大队-数据平台
wl
2022-07-14 f016363ca628b296d6edb65fc509fb89b22ee94f
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
package com.example.jz.modle.entity;
 
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
 
/**
 * 案件表(Cause)表实体类
 *
 * @author makejava
 * @since 2022-07-13 11:52:57
 */
@TableName("qyjz.cause")
public class Cause extends Model<Cause> {
    //id
    private Integer id;
    //案件编号
    private String number;
    //案件名称
    private String name;
    //第一次案发时间
    private Date firstTime;
    //创建时间
    private Date ctime;
    //状态 0未审核 1不予立案 2受理中 3已结案
    private String status;
    //负责人id
    private Integer userId;
    //案件描述
    private String description;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Date getFirstTime() {
        return firstTime;
    }
 
    public void setFirstTime(Date firstTime) {
        this.firstTime = firstTime;
    }
 
    public Date getCtime() {
        return ctime;
    }
 
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    /**
     * 获取主键值
     *
     * @return 主键值
     */
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
    }