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 { 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; } }