zhangyang 2 жил өмнө
parent
commit
5fbb3038bf

+ 7 - 7
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TetherVo.java

@@ -1,7 +1,7 @@
 package com.ruoyi.system.domain.vo;
 
-import com.ruoyi.system.domain.PoCollection;
 import com.ruoyi.system.domain.PoTether;
+import com.ruoyi.system.domain.PoTetherandcollection;
 import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.apache.commons.lang3.builder.ToStringStyle;
 
@@ -10,20 +10,20 @@ import java.util.List;
 
 public class TetherVo extends PoTether {
 
-    private List<PoCollection> poCollections = new ArrayList<>(); //套系对应的藏品信息
+    private List<PoTetherandcollection> poTetherandcollections = new ArrayList<>(); //套系对应的藏品信息
 
-    public void setPoCollections(List<PoCollection> poCollections) {
-        this.poCollections = poCollections;
+    public void setPoTetherandcollections(List<PoTetherandcollection> poTetherandcollections) {
+        this.poTetherandcollections = poTetherandcollections;
     }
 
-    public List<PoCollection> getPoCollections() {
-        return poCollections;
+    public List<PoTetherandcollection> getPoTetherandcollections() {
+        return poTetherandcollections;
     }
 
     @Override
     public String toString() {
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
-                .append("poCollections", getPoCollections())
+                .append("poTetherandcollections", getPoTetherandcollections())
                 .toString();
     }
 }