package com.zy.acs.manager.manager.controller.param; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2023/6/12 
 | 
 */ 
 | 
@Data 
 | 
public class LocInitParam { 
 | 
  
 | 
    private Long zoneId; 
 | 
  
 | 
    private Integer startRow; 
 | 
  
 | 
    private Integer endRow; 
 | 
  
 | 
    private Integer startBay; 
 | 
  
 | 
    private Integer endBay; 
 | 
  
 | 
    private Integer startLev; 
 | 
  
 | 
    private Integer endLev; 
 | 
  
 | 
    private Double levOffset; 
 | 
  
 | 
    private Double bottom; 
 | 
  
 | 
    private Integer compDirect; 
 | 
  
 | 
    private Long locSts; 
 | 
  
 | 
    private Long locType; 
 | 
  
 | 
} 
 |