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.vo ;
import com.entity.SystemintroEntity ;
import com.baomidou.mybatisplus.annotations.TableName ;
import com.fasterxml.jackson.annotation.JsonFormat ;
import java.util.Date ;
import org.springframework.format.annotation.DateTimeFormat ;
import java.io.Serializable ;
/**
* 关于我们
* 手机端接口返回实体辅助类
* (主要作用去除一些不必要的字段)
* @author
* @email
* @date 2023-02-21 09:46:06
*/
public class SystemintroVO implements Serializable {
private static final long serialVersionUID = 1L ;
/**
* 副标题
*/
private String subtitle ;
/**
* 内容
*/
private String content ;
/**
* 图片1
*/
private String picture1 ;
/**
* 图片2
*/
private String picture2 ;
/**
* 图片3
*/
private String picture3 ;
/**
* 设置:副标题
*/
public void setSubtitle ( String subtitle ) {
this . subtitle = subtitle ;
}
/**
* 获取:副标题
*/
public String getSubtitle ( ) {
return subtitle ;
}
/**
* 设置:内容
*/
public void setContent ( String content ) {
this . content = content ;
}
/**
* 获取:内容
*/
public String getContent ( ) {
return content ;
}
/**
* 设置: 图片1
*/
public void setPicture1 ( String picture1 ) {
this . picture1 = picture1 ;
}
/**
* 获取: 图片1
*/
public String getPicture1 ( ) {
return picture1 ;
}
/**
* 设置: 图片2
*/
public void setPicture2 ( String picture2 ) {
this . picture2 = picture2 ;
}
/**
* 获取: 图片2
*/
public String getPicture2 ( ) {
return picture2 ;
}
/**
* 设置: 图片3
*/
public void setPicture3 ( String picture3 ) {
this . picture3 = picture3 ;
}
/**
* 获取: 图片3
*/
public String getPicture3 ( ) {
return picture3 ;
}
}