fangyuan
2022-11-17 e413320d3a72baf7a631aeb56c05456de3cb4f1f
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;
 
/**
 * 资讯警员中间表(NewsInformationPolice)表实体类
 *
 * @author makejava
 * @since 2022-11-17 15:17:21
 */
@SuppressWarnings("serial")
public class NewsInformationPolice extends Model<NewsInformationPolice> {
    
    private Integer id;
    //资讯id
    private Integer newsInformationId;
    //警员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 getNewsInformationId() {
        return newsInformationId;
    }
 
    public void setNewsInformationId(Integer newsInformationId) {
        this.newsInformationId = newsInformationId;
    }
 
    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;
    }
    }