| 
					
				 | 
			
			
				@@ -31,6 +31,11 @@ public class PostSeries extends BaseEntity 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 藏品数量 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Excel(name = "藏品数量") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Long collectionCounts; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 藏品的list*/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @Excel(name = "藏品的list") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private Long collectionArray; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 套系状态(0在售 1预售 2已过期) */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Excel(name = "套系状态", readConverterExp = "0=在售,1=预售,2=已过期") 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -53,6 +58,14 @@ public class PostSeries extends BaseEntity 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     /** 删除标志(0代表存在 2代表删除) */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private String delFlag; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public Long getCollectionArray() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return collectionArray; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public void setCollectionArray(Long collectionArray) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.collectionArray = collectionArray; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public void setSeriesId(Long seriesId)  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.seriesId = seriesId; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -140,6 +153,7 @@ public class PostSeries extends BaseEntity 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("seriesId", getSeriesId()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("seriesName", getSeriesName()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("seriesImage", getSeriesImage()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                .append("collectionArray", getCollectionArray()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("collectionCounts", getCollectionCounts()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("status", getStatus()) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 .append("exchangeStatus", getExchangeStatus()) 
			 |