package com.mes.hollow.entity.vo;
|
|
import lombok.Data;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2024/12/23 10:48
|
* @Description:
|
*/
|
@Data
|
public class HollowBigStorageDetailsQueryVO {
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
/**
|
* 流程卡
|
*/
|
private String flowCardId;
|
/**
|
* 膜系
|
*/
|
private String filmsId;
|
/**
|
* 厚度
|
*/
|
private int thickness;
|
/**
|
* 客户名称
|
*/
|
private String customerName;
|
/**
|
* 产品名称
|
*/
|
private String productName;
|
/**
|
* 序号
|
*/
|
private Integer orderSort;
|
/**
|
* 层
|
*/
|
private Integer layer;
|
|
}
|