This commit is contained in:
caozehui
2024-12-04 09:50:51 +08:00
parent 3e34faed90
commit f287498659
7 changed files with 82 additions and 80 deletions

View File

@@ -0,0 +1,38 @@
package com.njcn.gather.device.err.pojo.vo;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
* @author caozehui
* @data 2024-12-02
*/
@Data
public class PqErrSysDtlsVO {
/**
* 列1
*/
private String col1;
/**
* 列2
*/
private String col2;
/**
* 装置等级
*/
private String devLevel;
/**
* 测量类型
*/
private String testType;
/**
* 测量条件 & 最大误差
*/
private List<Map<String, Object>> info;
}