| package com.zy.asrs.entity.param; | 
|   | 
| import com.core.common.BaseRes; | 
| import com.core.exception.CoolException; | 
|   | 
| import java.util.ArrayList; | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by vincent on 2020/6/13 | 
|  */ | 
| public class BasDevpInitParam { | 
|   | 
|     // 站点号 | 
|     // 起始站点号 | 
|     private Integer startDev; | 
|   | 
|     // 终止站点号 | 
|     private Integer endDev; | 
|   | 
|   | 
|     public Integer getStartDev() { | 
|         if (null == startDev) { | 
|             throw new CoolException(BaseRes.PARAM); | 
|         } | 
|         return startDev; | 
|     } | 
|   | 
|     public void setStartDev(Integer startDev) { | 
|         this.startDev = startDev; | 
|     } | 
|   | 
|     public Integer getEndDev() { | 
|         if (null == endDev) { | 
|             throw new CoolException(BaseRes.PARAM); | 
|         } | 
|         return endDev; | 
|     } | 
|   | 
|     public void setEndDev(Integer endDev) { | 
|         this.endDev = endDev; | 
|     } | 
|   | 
| } |