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) { // 设置简介的方法
this.introduction = introduction;
/** }
*
*/ /**
*
public void setIntroduction(String introduction) { */
this.introduction = introduction; public String getIntroduction() { // 获取简介的方法
} return introduction;
}
/**
* /**
*/ *
public String getIntroduction() { */
return introduction; public void setPicture(String picture) { // 设置图片的方法
} this.picture = picture;
}
/** /**
* *
*/ */
public String getPicture() { // 获取图片的方法
public void setPicture(String picture) { return picture;
this.picture = picture; }
}
/**
/** *
* */
*/ public void setContent(String content) { // 设置内容的方法
public String getPicture() { this.content = content;
return picture; }
}
/**
*
/** */
* public String getContent() { // 获取内容的方法
*/ return content;
}
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.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; // 定义图片字段
/**
* /**
*/ * (1:,21:,22:,31:,41:)
*/
private String picture; private String type; // 定义类型字段
/** /**
* (1:,21:,22:,31:,41:) *
*/ */
private String inteltype; // 定义推荐类型字段
private String type;
/**
/** *
* */
*/ private String remark; // 定义备注字段
private String inteltype; /**
* id
/** */
* public void setRefid(Long refid) { // 设置商品id的方法
*/ this.refid = refid;
}
private String remark;
/**
* id
/** */
* id public Long getRefid() { // 获取商品id的方法
*/ return refid;
}
public void setRefid(Long refid) {
this.refid = refid; /**
} *
*/
/** public void setTablename(String tablename) { // 设置表名的方法
* id this.tablename = tablename;
*/ }
public Long getRefid() {
return refid; /**
} *
*/
public String getTablename() { // 获取表名的方法
/** return tablename;
* }
*/
/**
public void setTablename(String tablename) { *
this.tablename = tablename; */
} public void setName(String name) { // 设置名称的方法
this.name = name;
/** }
*
*/ /**
public String getTablename() { *
return tablename; */
} public String getName() { // 获取名称的方法
return name;
}
/**
* /**
*/ *
*/
public void setName(String name) { public void setPicture(String picture) { // 设置图片的方法
this.name = name; this.picture = picture;
} }
/** /**
* *
*/ */
public String getName() { public String getPicture() { // 获取图片的方法
return name; return picture;
} }
/**
/** * (1:,21:,22:,31:,41:)
* */
*/ public void setType(String type) { // 设置类型的方法
this.type = type;
public void setPicture(String picture) { }
this.picture = picture;
} /**
* (1:,21:,22:,31:,41:)
/** */
* public String getType() { // 获取类型的方法
*/ return type;
public String getPicture() { }
return picture;
} /**
*
*/
/** public void setInteltype(String inteltype) { // 设置推荐类型的方法
* (1:,21:,22:,31:,41:) this.inteltype = inteltype;
*/ }
public void setType(String type) { /**
this.type = type; *
} */
public String getInteltype() { // 获取推荐类型的方法
/** return inteltype;
* (1:,21:,22:,31:,41:) }
*/
public String getType() { /**
return type; *
} */
public void setRemark(String remark) { // 设置备注的方法
this.remark = remark;
/** }
*
*/ /**
*
public void setInteltype(String inteltype) { */
this.inteltype = inteltype; public String getRemark() { // 获取备注的方法
} return remark;
}
/**
*
*/
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.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
*/
/** private String picture1; // 定义图片1字段
* 1
*/ /**
* 2
private String picture1; */
private String picture2; // 定义图片2字段
/**
* 2 /**
*/ * 3
*/
private String picture2; private String picture3; // 定义图片3字段
/** /**
* 3 *
*/ */
public void setSubtitle(String subtitle) { // 设置副标题的方法
private String picture3; this.subtitle = subtitle;
}
/** /**
* *
*/ */
public String getSubtitle() { // 获取副标题的方法
public void setSubtitle(String subtitle) { return subtitle;
this.subtitle = subtitle; }
}
/**
/** *
* */
*/ public void setContent(String content) { // 设置内容的方法
public String getSubtitle() { this.content = content;
return subtitle; }
}
/**
*
/** */
* public String getContent() { // 获取内容的方法
*/ return content;
}
public void setContent(String content) {
this.content = content; /**
} * 1
*/
/** public void setPicture1(String picture1) { // 设置图片1的方法
* this.picture1 = picture1;
*/ }
public String getContent() {
return content; /**
} * 1
*/
public String getPicture1() { // 获取图片1的方法
/** return picture1;
* 1 }
*/
/**
public void setPicture1(String picture1) { * 2
this.picture1 = picture1; */
} public void setPicture2(String picture2) { // 设置图片2的方法
this.picture2 = picture2;
/** }
* 1
*/ /**
public String getPicture1() { * 2
return picture1; */
} public String getPicture2() { // 获取图片2的方法
return picture2;
}
/**
* 2 /**
*/ * 3
*/
public void setPicture2(String picture2) { public void setPicture3(String picture3) { // 设置图片3的方法
this.picture2 = picture2; this.picture3 = picture3;
} }
/** /**
* 2 * 3
*/ */
public String getPicture2() { public String getPicture3() { // 获取图片3的方法
return picture2; return picture3;
} }
/**
* 3
*/
public void setPicture3(String picture3) {
this.picture3 = picture3;
}
/**
* 3
*/
public String getPicture3() {
return picture3;
}
} }

Loading…
Cancel
Save