refactor(shop):重构ShopVo类字段结构
- 将appId、appName、appCode字段移至类末尾 - 新增websiteId、websiteName、websiteCode字段 - 调整字段注释描述以匹配新命名- 保持原有description和keywords字段不变 - 重新组织字段顺序以优化数据结构清晰度
This commit is contained in:
@@ -18,11 +18,14 @@ import java.util.List;
|
||||
@Schema(description = "应用信息视图对象")
|
||||
public class ShopVo implements Serializable {
|
||||
|
||||
@Schema(description = "应用ID")
|
||||
private Integer appId;
|
||||
@Schema(description = "站点ID")
|
||||
private Integer websiteId;
|
||||
|
||||
@Schema(description = "应用名称")
|
||||
private String appName;
|
||||
@Schema(description = "站点名称")
|
||||
private String websiteName;
|
||||
|
||||
@Schema(description = "站点编号")
|
||||
private String websiteCode;
|
||||
|
||||
@Schema(description = "应用介绍")
|
||||
private String description;
|
||||
@@ -30,9 +33,6 @@ public class ShopVo implements Serializable {
|
||||
@Schema(description = "网站关键词")
|
||||
private String keywords;
|
||||
|
||||
@Schema(description = "应用编号")
|
||||
private String appCode;
|
||||
|
||||
@Schema(description = "小程序二维码")
|
||||
private String mpQrCode;
|
||||
|
||||
@@ -95,4 +95,13 @@ public class ShopVo implements Serializable {
|
||||
|
||||
@Schema(description = "网站设置")
|
||||
private Object setting;
|
||||
|
||||
@Schema(description = "应用ID")
|
||||
private Integer appId;
|
||||
|
||||
@Schema(description = "应用名称")
|
||||
private String appName;
|
||||
|
||||
@Schema(description = "应用编号")
|
||||
private String appCode;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user