误差体系新增ValueType、errorUnit字段,并修改相关接口

This commit is contained in:
caozehui
2025-04-21 14:52:27 +08:00
parent ea83963d33
commit 434dc676ce
2 changed files with 15 additions and 0 deletions

View File

@@ -58,4 +58,10 @@ public class PqErrSysDtlsParam {
@NotNull(message = DetectionValidMessage.SORT_NOT_NULL) @NotNull(message = DetectionValidMessage.SORT_NOT_NULL)
private Integer sort; private Integer sort;
@ApiModelProperty("1绝对值、2相对值")
private Integer valueType;
@ApiModelProperty("误差单位")
private String errorUnit;
} }

View File

@@ -86,5 +86,14 @@ public class PqErrSysDtls implements Serializable {
*/ */
private Integer sort; private Integer sort;
/**
* 1绝对值、2相对值
*/
private Integer valueType;
/**
* 误差单位
*/
private String errorUnit;
} }