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.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; 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 * @email
* @date 2023-02-21 09:46:06 * @date 2023-02-21 09:46:06
*/ */
public class NewsVO implements Serializable { public class NewsVO implements Serializable { // 定义NewsVO类实现Serializable接口
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L; // 定义序列化版本号
/** /**
* *
*/ */
private String introduction; // 定义简介字段
private String introduction;
/** /**
* *
*/ */
private String picture; // 定义图片字段
private String picture;
/** /**
* *
*/ */
private String content; // 定义内容字段
private String content;
/** /**
* *
*/ */
public void setIntroduction(String introduction) { // 设置简介的方法
public void setIntroduction(String introduction) {
this.introduction = introduction; this.introduction = introduction;
} }
/** /**
* *
*/ */
public String getIntroduction() { public String getIntroduction() { // 获取简介的方法
return introduction; return introduction;
} }
/** /**
* *
*/ */
public void setPicture(String picture) { // 设置图片的方法
public void setPicture(String picture) {
this.picture = picture; this.picture = picture;
} }
/** /**
* *
*/ */
public String getPicture() { public String getPicture() { // 获取图片的方法
return picture; return picture;
} }
/** /**
* *
*/ */
public void setContent(String content) { // 设置内容的方法
public void setContent(String content) {
this.content = content; this.content = content;
} }
/** /**
* *
*/ */
public String getContent() { public String getContent() { // 获取内容的方法
return content; 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.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; 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 * @email
* @date 2023-02-21 09:46:06 * @date 2023-02-21 09:46:06
*/ */
public class StoreupVO implements Serializable { public class StoreupVO implements Serializable { // 定义StoreupVO类实现Serializable接口
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L; // 定义序列化版本号
/** /**
* id * id
*/ */
private Long refid; // 定义商品id字段
private Long refid;
/** /**
* *
*/ */
private String tablename; // 定义表名字段
private String tablename;
/** /**
* *
*/ */
private String name; // 定义名称字段
private String name;
/** /**
* *
*/ */
private String picture; // 定义图片字段
private String picture;
/** /**
* (1:,21:,22:,31:,41:) * (1:,21:,22:,31:,41:)
*/ */
private String type; // 定义类型字段
private String type;
/** /**
* *
*/ */
private String inteltype; // 定义推荐类型字段
private String inteltype;
/** /**
* *
*/ */
private String remark; // 定义备注字段
private String remark;
/** /**
* id * id
*/ */
public void setRefid(Long refid) { // 设置商品id的方法
public void setRefid(Long refid) {
this.refid = refid; this.refid = refid;
} }
/** /**
* id * id
*/ */
public Long getRefid() { public Long getRefid() { // 获取商品id的方法
return refid; return refid;
} }
/** /**
* *
*/ */
public void setTablename(String tablename) { // 设置表名的方法
public void setTablename(String tablename) {
this.tablename = tablename; this.tablename = tablename;
} }
/** /**
* *
*/ */
public String getTablename() { public String getTablename() { // 获取表名的方法
return tablename; return tablename;
} }
/** /**
* *
*/ */
public void setName(String name) { // 设置名称的方法
public void setName(String name) {
this.name = name; this.name = name;
} }
/** /**
* *
*/ */
public String getName() { public String getName() { // 获取名称的方法
return name; return name;
} }
/** /**
* *
*/ */
public void setPicture(String picture) { // 设置图片的方法
public void setPicture(String picture) {
this.picture = picture; this.picture = picture;
} }
/** /**
* *
*/ */
public String getPicture() { public String getPicture() { // 获取图片的方法
return picture; return picture;
} }
/** /**
* (1:,21:,22:,31:,41:) * (1:,21:,22:,31:,41:)
*/ */
public void setType(String type) { // 设置类型的方法
public void setType(String type) {
this.type = type; this.type = type;
} }
/** /**
* (1:,21:,22:,31:,41:) * (1:,21:,22:,31:,41:)
*/ */
public String getType() { public String getType() { // 获取类型的方法
return type; return type;
} }
/** /**
* *
*/ */
public void setInteltype(String inteltype) { // 设置推荐类型的方法
public void setInteltype(String inteltype) {
this.inteltype = inteltype; this.inteltype = inteltype;
} }
/** /**
* *
*/ */
public String getInteltype() { public String getInteltype() { // 获取推荐类型的方法
return inteltype; return inteltype;
} }
/** /**
* *
*/ */
public void setRemark(String remark) { // 设置备注的方法
public void setRemark(String remark) {
this.remark = remark; this.remark = remark;
} }
/** /**
* *
*/ */
public String getRemark() { public String getRemark() { // 获取备注的方法
return remark; 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.baomidou.mybatisplus.annotations.TableName; // 导入MyBatis-Plus的TableName注解
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson的JsonFormat注解
import java.util.Date; import java.util.Date; // 导入Date类
import org.springframework.format.annotation.DateTimeFormat; 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 * @email
* @date 2023-02-21 09:46:06 * @date 2023-02-21 09:46:06
*/ */
public class SystemintroVO implements Serializable { public class SystemintroVO implements Serializable { // 定义SystemintroVO类实现Serializable接口
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L; // 定义序列化版本号
/** /**
* *
*/ */
private String subtitle; // 定义副标题字段
private String subtitle;
/** /**
* *
*/ */
private String content; // 定义内容字段
private String content;
/** /**
* 1 * 1
*/ */
private String picture1; // 定义图片1字段
private String picture1;
/** /**
* 2 * 2
*/ */
private String picture2; // 定义图片2字段
private String picture2;
/** /**
* 3 * 3
*/ */
private String picture3; // 定义图片3字段
private String picture3;
/** /**
* *
*/ */
public void setSubtitle(String subtitle) { // 设置副标题的方法
public void setSubtitle(String subtitle) {
this.subtitle = subtitle; this.subtitle = subtitle;
} }
/** /**
* *
*/ */
public String getSubtitle() { public String getSubtitle() { // 获取副标题的方法
return subtitle; return subtitle;
} }
/** /**
* *
*/ */
public void setContent(String content) { // 设置内容的方法
public void setContent(String content) {
this.content = content; this.content = content;
} }
/** /**
* *
*/ */
public String getContent() { public String getContent() { // 获取内容的方法
return content; return content;
} }
/** /**
* 1 * 1
*/ */
public void setPicture1(String picture1) { // 设置图片1的方法
public void setPicture1(String picture1) {
this.picture1 = picture1; this.picture1 = picture1;
} }
/** /**
* 1 * 1
*/ */
public String getPicture1() { public String getPicture1() { // 获取图片1的方法
return picture1; return picture1;
} }
/** /**
* 2 * 2
*/ */
public void setPicture2(String picture2) { // 设置图片2的方法
public void setPicture2(String picture2) {
this.picture2 = picture2; this.picture2 = picture2;
} }
/** /**
* 2 * 2
*/ */
public String getPicture2() { public String getPicture2() { // 获取图片2的方法
return picture2; return picture2;
} }
/** /**
* 3 * 3
*/ */
public void setPicture3(String picture3) { // 设置图片3的方法
public void setPicture3(String picture3) {
this.picture3 = picture3; this.picture3 = picture3;
} }
/** /**
* 3 * 3
*/ */
public String getPicture3() { public String getPicture3() { // 获取图片3的方法
return picture3; return picture3;
} }
} }

Loading…
Cancel
Save