fangyuan
2022-11-17 e413320d3a72baf7a631aeb56c05456de3cb4f1f
ycl-platform/src/main/java/com/ycl/entity/NewsInformation.java
@@ -3,17 +3,18 @@
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.sql.Date;
/**
 * 资讯表(NewsInformation)表实体类
 *
 * @author makejava
 * @since 2022-11-17 11:12:41
 * @since 2022-11-17 11:38:27
 */
@SuppressWarnings("serial")
public class NewsInformation extends Model<NewsInformation> {
    //id
    private Object id;
    private Integer id;
    //标题
    private String title;
    //内容
@@ -28,15 +29,13 @@
    private Object sendTo;
    //图片地址
    private String imageUrl;
    //部门(机构)id
    private String newsDepartmentId;
    public Object getId() {
    public Integer getId() {
        return id;
    }
    public void setId(Object id) {
    public void setId(Integer id) {
        this.id = id;
    }
@@ -94,14 +93,6 @@
    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }
    public String getNewsDepartmentId() {
        return newsDepartmentId;
    }
    public void setNewsDepartmentId(String newsDepartmentId) {
        this.newsDepartmentId = newsDepartmentId;
    }
    /**