소스 검색

修改返回类型

zhangyang 2 년 전
부모
커밋
5fbb3038bf
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7 7
      ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TetherVo.java

+ 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();
     }
 }