package com.mes.hollow.entity.dto;
|
|
import com.mes.hollow.entity.HollowGlassRelationInfo;
|
import lombok.Data;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2024/11/27 11:36
|
* @Description:
|
*/
|
@Data
|
public class HollowBigStorageDTO extends HollowGlassRelationInfo {
|
/**
|
* 格子号
|
*/
|
private Integer slot;
|
/**
|
* 剩余宽度
|
*/
|
private Integer remainWidth;
|
|
/**
|
* 玻璃数量
|
*/
|
private Integer glassCount;
|
|
/**
|
* 笼子号
|
*/
|
private Integer deviceId;
|
}
|