package com.iailab.module.any.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年06月25日
|
*/
|
@Data
|
@Schema(name = "生产过程分析参数")
|
public class AnyProcParamDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
|
private String cardId;
|
|
private String type;
|
|
private String paramId;
|
|
private Integer paramLength;
|
|
private Integer sort;
|
}
|