package com.zy.core.model; 
 | 
  
 | 
import com.zy.core.Slave; 
 | 
import lombok.Data; 
 | 
import lombok.EqualsAndHashCode; 
 | 
  
 | 
import java.util.ArrayList; 
 | 
import java.util.List; 
 | 
  
 | 
@EqualsAndHashCode(callSuper = true) 
 | 
@Data 
 | 
public class RgvSlave  extends Slave { 
 | 
  
 | 
    private Integer rack; 
 | 
  
 | 
    private Integer slot; 
 | 
  
 | 
    private List<Sta> inStn = new ArrayList<>(); 
 | 
  
 | 
    private List<Sta> outStn = new ArrayList<>(); 
 | 
  
 | 
    @Data 
 | 
    public static class Sta { 
 | 
        private Integer sourceStaNo;//源站 
 | 
        private Integer sourcePlcId; 
 | 
  
 | 
  
 | 
  
 | 
        private Integer staNo;//目标站 
 | 
        private Integer staPlcId; 
 | 
  
 | 
    } 
 | 
  
 | 
} 
 |