| | |
| | |
|
| | | 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;
|
| | | //内容
|
| | |
| | | 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;
|
| | | }
|
| | |
|
| | |
| | |
|
| | | public void setImageUrl(String imageUrl) {
|
| | | this.imageUrl = imageUrl;
|
| | | }
|
| | |
|
| | | public String getNewsDepartmentId() {
|
| | | return newsDepartmentId;
|
| | | }
|
| | |
|
| | | public void setNewsDepartmentId(String newsDepartmentId) {
|
| | | this.newsDepartmentId = newsDepartmentId;
|
| | | }
|
| | |
|
| | | /**
|