package com.mes.bigstorage.entity.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2024/11/25 18:53
|
* @Description:
|
*/
|
@Data
|
public class TemperingGlassCountDTO {
|
/**
|
* 工程号
|
*/
|
private String engineerId;
|
/**
|
* 钢化版图id
|
*/
|
private Integer temperingLayoutId;
|
/**
|
* 膜系
|
*/
|
private String filmsId;
|
/**
|
* /*厚度
|
*/
|
private Double thickness;
|
/**
|
* 总片数
|
*/
|
private Integer totalCount;
|
/**
|
* 实际片数
|
*/
|
private Integer realCount;
|
/**
|
* 破损片数
|
*/
|
private Integer damageCount;
|
/**
|
* 缺少片数
|
*/
|
private Integer lackCount;
|
|
}
|