fangyuan
2022-11-17 e413320d3a72baf7a631aeb56c05456de3cb4f1f
ycl-platform/src/main/java/com/ycl/entity/NewsInformationPolice.java
File was renamed from ycl-platform/src/main/java/com/ycl/entity/NewsDepartmentInformation.java
@@ -5,17 +5,17 @@
import java.io.Serializable;
/**
 * 机构(部门)中间表(NewsDepartmentInformation)表实体类
 * 资讯警员中间表(NewsInformationPolice)表实体类
 *
 * @author makejava
 * @since 2022-11-17 11:38:27
 * @since 2022-11-17 15:17:21
 */
@SuppressWarnings("serial")
public class NewsDepartmentInformation extends Model<NewsDepartmentInformation> {
public class NewsInformationPolice extends Model<NewsInformationPolice> {
    
    private Integer id;
    //机构(部门id)
    private Integer newsDepartmentId;
    //资讯id
    private Integer newsInformationId;
    //警员id
    private Integer newsPoliceId;
    //是否签收0未签收1签收2不需要签收
@@ -30,12 +30,12 @@
        this.id = id;
    }
    public Integer getNewsDepartmentId() {
        return newsDepartmentId;
    public Integer getNewsInformationId() {
        return newsInformationId;
    }
    public void setNewsDepartmentId(Integer newsDepartmentId) {
        this.newsDepartmentId = newsDepartmentId;
    public void setNewsInformationId(Integer newsInformationId) {
        this.newsInformationId = newsInformationId;
    }
    public Integer getNewsPoliceId() {