package com.mes.damage.entity.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wu
|
* @since 2024-06-25
|
*/
|
@ApiModel(description = "<p> </p>")
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class FlowCardDamageVO implements Serializable {
|
|
/**
|
* 工程
|
*/
|
@ApiModelProperty(value = "工程", position = 1)
|
private String engineerId;
|
|
/**
|
* 流程卡
|
*/
|
@ApiModelProperty(value = "流程卡", position = 2)
|
private String flowCardId;
|
|
/**
|
* 序号
|
*/
|
@ApiModelProperty(value = "序号", position = 3)
|
private Integer glassType;
|
|
/**
|
* 工艺确认序号
|
*/
|
@ApiModelProperty(value = "层", position = 4)
|
private Integer layer;
|
|
/**
|
* 膜系
|
*/
|
@ApiModelProperty(value = "膜系", position = 5)
|
private String filmsid;
|
|
/**
|
* 宽
|
*/
|
@ApiModelProperty(value = "宽", position = 6)
|
private Double width;
|
|
/**
|
* 高
|
*/
|
@ApiModelProperty(value = "高", position = 7)
|
private Double height;
|
|
/**
|
* 高
|
*/
|
@ApiModelProperty(value = "高", position = 8)
|
private Double thickness;
|
|
/**
|
* 总数量
|
*/
|
@ApiModelProperty(value = "总数量", position = 9)
|
private Integer totalQuantity;
|
|
/**
|
* 切割
|
*/
|
@ApiModelProperty(value = "切割", position = 10)
|
private Integer cutting;
|
|
/**
|
* 磨边
|
*/
|
@ApiModelProperty(value = "磨边", position = 11)
|
private Integer edging;
|
|
/**
|
* 钢化
|
*/
|
@ApiModelProperty(value = "钢化", position = 12)
|
private Integer temping;
|
|
}
|