package com.chinaztt.mes.technology.dto;
|
|
import com.chinaztt.mes.technology.entity.DocumentStandardParam;
|
import com.chinaztt.mes.technology.entity.DocumentTestStandard;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @Description : 工艺文件检测标准
|
* @ClassName : DocTestStandardDTO
|
* @Author : sll
|
* @Date: 2022-07-01 18:01
|
*/
|
@Data
|
public class DocTestStandardDTO extends DocumentTestStandard{
|
private Long documentId;//工艺文件id
|
|
private List<DocumentStandardParam> documentStandardParamList;//检测参数明细
|
}
|