package com.mes.edgglasstask.entity;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wu
|
* @since 2024-05-11
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class EdgGlassTaskInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private String glassId;
|
|
private Integer width;
|
|
private Integer height;
|
|
private Integer thickness;
|
|
private Integer glassType;
|
|
private Integer status;
|
|
|
|
|
}
|