pull/2/head
2593162056@qq.com 9 months ago
parent a8a302077b
commit bcea284632

@ -1,14 +1,13 @@
package com.entity.vo;
package com.entity.vo; // 定义包名
import com.entity.NewsEntity;
import com.entity.NewsEntity; // 导入NewsEntity类
import com.baomidou.mybatisplus.annotations.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; // 导入Spring的DateTimeFormat注解
import java.io.Serializable;
import java.io.Serializable; // 导入Serializable接口
/**
*
@ -18,74 +17,63 @@ import java.io.Serializable;
* @email
* @date 2023-02-21 09:46:06
*/
public class NewsVO implements Serializable {
private static final long serialVersionUID = 1L;
public class NewsVO implements Serializable { // 定义NewsVO类实现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;
}
/**
*
*/
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;
}
}

@ -1,14 +1,13 @@
package com.entity.vo;
package com.entity.vo; // 定义包名
import com.entity.StoreupEntity;
import com.entity.StoreupEntity; // 导入StoreupEntity类
import com.baomidou.mybatisplus.annotations.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; // 导入Spring的DateTimeFormat注解
import java.io.Serializable;
import java.io.Serializable; // 导入Serializable接口
/**
*
@ -18,162 +17,139 @@ import java.io.Serializable;
* @email
* @date 2023-02-21 09:46:06
*/
public class StoreupVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* id
*/
private Long refid;
/**
*
*/
private String tablename;
/**
*
*/
private String name;
/**
*
*/
private String picture;
/**
* (1:,21:,22:,31:,41:)
*/
private String type;
/**
*
*/
private String inteltype;
/**
*
*/
private String remark;
/**
* id
*/
public void setRefid(Long refid) {
this.refid = refid;
}
/**
* id
*/
public Long getRefid() {
return refid;
}
/**
*
*/
public void setTablename(String tablename) {
this.tablename = tablename;
}
/**
*
*/
public String getTablename() {
return tablename;
}
/**
*
*/
public void setName(String name) {
this.name = name;
}
/**
*
*/
public String getName() {
return name;
}
/**
*
*/
public void setPicture(String picture) {
this.picture = picture;
}
/**
*
*/
public String getPicture() {
return picture;
}
/**
* (1:,21:,22:,31:,41:)
*/
public void setType(String type) {
this.type = type;
}
/**
* (1:,21:,22:,31:,41:)
*/
public String getType() {
return type;
}
/**
*
*/
public void setInteltype(String inteltype) {
this.inteltype = inteltype;
}
/**
*
*/
public String getInteltype() {
return inteltype;
}
/**
*
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
*
*/
public String getRemark() {
return remark;
}
public class StoreupVO implements Serializable { // 定义StoreupVO类实现Serializable接口
private static final long serialVersionUID = 1L; // 定义序列化版本号
/**
* id
*/
private Long refid; // 定义商品id字段
/**
*
*/
private String tablename; // 定义表名字段
/**
*
*/
private String name; // 定义名称字段
/**
*
*/
private String picture; // 定义图片字段
/**
* (1:,21:,22:,31:,41:)
*/
private String type; // 定义类型字段
/**
*
*/
private String inteltype; // 定义推荐类型字段
/**
*
*/
private String remark; // 定义备注字段
/**
* id
*/
public void setRefid(Long refid) { // 设置商品id的方法
this.refid = refid;
}
/**
* id
*/
public Long getRefid() { // 获取商品id的方法
return refid;
}
/**
*
*/
public void setTablename(String tablename) { // 设置表名的方法
this.tablename = tablename;
}
/**
*
*/
public String getTablename() { // 获取表名的方法
return tablename;
}
/**
*
*/
public void setName(String name) { // 设置名称的方法
this.name = name;
}
/**
*
*/
public String getName() { // 获取名称的方法
return name;
}
/**
*
*/
public void setPicture(String picture) { // 设置图片的方法
this.picture = picture;
}
/**
*
*/
public String getPicture() { // 获取图片的方法
return picture;
}
/**
* (1:,21:,22:,31:,41:)
*/
public void setType(String type) { // 设置类型的方法
this.type = type;
}
/**
* (1:,21:,22:,31:,41:)
*/
public String getType() { // 获取类型的方法
return type;
}
/**
*
*/
public void setInteltype(String inteltype) { // 设置推荐类型的方法
this.inteltype = inteltype;
}
/**
*
*/
public String getInteltype() { // 获取推荐类型的方法
return inteltype;
}
/**
*
*/
public void setRemark(String remark) { // 设置备注的方法
this.remark = remark;
}
/**
*
*/
public String getRemark() { // 获取备注的方法
return remark;
}
}

@ -1,14 +1,13 @@
package com.entity.vo;
package com.entity.vo; // 定义包名
import com.entity.SystemintroEntity;
import com.entity.SystemintroEntity; // 导入SystemintroEntity类
import com.baomidou.mybatisplus.annotations.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; // 导入Spring的DateTimeFormat注解
import java.io.Serializable;
import java.io.Serializable; // 导入Serializable接口
/**
*
@ -18,118 +17,101 @@ import java.io.Serializable;
* @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;
}
public class SystemintroVO implements Serializable { // 定义SystemintroVO类实现Serializable接口
private static final long serialVersionUID = 1L; // 定义序列化版本号
/**
*
*/
private String subtitle; // 定义副标题字段
/**
*
*/
private String content; // 定义内容字段
/**
* 1
*/
private String picture1; // 定义图片1字段
/**
* 2
*/
private String picture2; // 定义图片2字段
/**
* 3
*/
private String picture3; // 定义图片3字段
/**
*
*/
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) { // 设置图片1的方法
this.picture1 = picture1;
}
/**
* 1
*/
public String getPicture1() { // 获取图片1的方法
return picture1;
}
/**
* 2
*/
public void setPicture2(String picture2) { // 设置图片2的方法
this.picture2 = picture2;
}
/**
* 2
*/
public String getPicture2() { // 获取图片2的方法
return picture2;
}
/**
* 3
*/
public void setPicture3(String picture3) { // 设置图片3的方法
this.picture3 = picture3;
}
/**
* 3
*/
public String getPicture3() { // 获取图片3的方法
return picture3;
}
}

Loading…
Cancel
Save