package com.zy.core.model;
|
|
import lombok.Data;
|
|
@Data
|
public class StationObjModel {
|
|
private Integer deviceNo;
|
|
private Integer stationId;
|
|
private Integer deviceRow;
|
|
private Integer deviceBay;
|
|
private Integer deviceLev;
|
|
private StationObjModel barcodeStation;
|
|
}
|