1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  | package com.zy.common.model; 
 |    
 |  import java.util.List; 
 |    
 |  /** 
 |   * Created by vincent on 2020-05-12 
 |   */ 
 |  public class PowerDto { 
 |    
 |      private String two; 
 |    
 |      private List<String> three; 
 |    
 |      public String getTwo() { 
 |          return two; 
 |      } 
 |    
 |      public void setTwo(String two) { 
 |          this.two = two; 
 |      } 
 |    
 |      public List<String> getThree() { 
 |          return three; 
 |      } 
 |    
 |      public void setThree(List<String> three) { 
 |          this.three = three; 
 |      } 
 |  } 
 |  
  |