You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.entity.model ;
import com.entity.NewsEntity ;
import com.baomidou.mybatisplus.annotations.TableName ;
import java.util.Date ;
import org.springframework.format.annotation.DateTimeFormat ;
import com.fasterxml.jackson.annotation.JsonFormat ;
import java.io.Serializable ;
/**
* 电影资讯
* 接收传参的实体类
*(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了)
* 取自ModelAndView 的model名称
* @author
* @email
* @date 2022-04-06 15:26:31
*/
public class NewsModel implements Serializable {
private static final long serialVersionUID = 1L ;
/**
* 简介
*/
private String introduction ;
/**
* 图片
*/
private String picture ;
/**
* 内容
*/
private String content ;
/**
* 设置:简介
*/
public void setIntroduction ( String introduction ) {
this . introduction = introduction ;
}
/**
* 获取:简介
*/
public String getIntroduction ( ) {
return introduction ;
}
/**
* 设置:图片
*/
public void setPicture ( String picture ) {
this . picture = picture ;
}
/**
* 获取:图片
*/
public String getPicture ( ) {
return picture ;
}
/**
* 设置:内容
*/
public void setContent ( String content ) {
this . content = content ;
}
/**
* 获取:内容
*/
public String getContent ( ) {
return content ;
}
}