wl
2022-11-17 d77171ee108ed708800d53fed174726be359b058
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
package com.ycl.entity;
 
 
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
 
/**
 * 机构(部门)中间表(NewsDepartmentInformation)表实体类
 *
 * @author makejava
 * @since 2022-11-17 11:38:27
 */
@SuppressWarnings("serial")
public class NewsDepartmentInformation extends Model<NewsDepartmentInformation> {
    
    private Integer id;
    //机构(部门id)
    private Integer newsDepartmentId;
    //警员id
    private Integer newsPoliceId;
    //是否签收0未签收1签收2不需要签收
    private Integer isSign;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getNewsDepartmentId() {
        return newsDepartmentId;
    }
 
    public void setNewsDepartmentId(Integer newsDepartmentId) {
        this.newsDepartmentId = newsDepartmentId;
    }
 
    public Integer getNewsPoliceId() {
        return newsPoliceId;
    }
 
    public void setNewsPoliceId(Integer newsPoliceId) {
        this.newsPoliceId = newsPoliceId;
    }
 
    public Integer getIsSign() {
        return isSign;
    }
 
    public void setIsSign(Integer isSign) {
        this.isSign = isSign;
    }
 
    /**
     * 获取主键值
     *
     * @return 主键值
     */
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
    }