| package com.zy.asrs.entity.param; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by vincent on 2020/6/13 | 
|  */ | 
| public class EmptyPlateOutParam { | 
|   | 
|     // 出站口 | 
|     private Integer outSite; | 
|   | 
|     // 库位号集合 | 
|     private List<String> locNos; | 
|   | 
|     public Integer getOutSite() { | 
|         return outSite; | 
|     } | 
|   | 
|     public void setOutSite(Integer outSite) { | 
|         this.outSite = outSite; | 
|     } | 
|   | 
|     public List<String> getLocNos() { | 
|         return locNos; | 
|     } | 
|   | 
|     public void setLocNos(List<String> locNos) { | 
|         this.locNos = locNos; | 
|     } | 
| } |