From 434dc676cefd62f9b8f3777230b91e11dd8b9d31 Mon Sep 17 00:00:00 2001 From: caozehui <2427765068@qq.com> Date: Mon, 21 Apr 2025 14:52:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=AF=E5=B7=AE=E4=BD=93=E7=B3=BB=E6=96=B0?= =?UTF-8?q?=E5=A2=9EValueType=E3=80=81errorUnit=E5=AD=97=E6=AE=B5=EF=BC=8C?= =?UTF-8?q?=E5=B9=B6=E4=BF=AE=E6=94=B9=E7=9B=B8=E5=85=B3=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../njcn/gather/err/pojo/param/PqErrSysDtlsParam.java | 6 ++++++ .../java/com/njcn/gather/err/pojo/po/PqErrSysDtls.java | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/detection/src/main/java/com/njcn/gather/err/pojo/param/PqErrSysDtlsParam.java b/detection/src/main/java/com/njcn/gather/err/pojo/param/PqErrSysDtlsParam.java index 4738d1c2..88a54820 100644 --- a/detection/src/main/java/com/njcn/gather/err/pojo/param/PqErrSysDtlsParam.java +++ b/detection/src/main/java/com/njcn/gather/err/pojo/param/PqErrSysDtlsParam.java @@ -58,4 +58,10 @@ public class PqErrSysDtlsParam { @NotNull(message = DetectionValidMessage.SORT_NOT_NULL) private Integer sort; + @ApiModelProperty("1绝对值、2相对值") + private Integer valueType; + + @ApiModelProperty("误差单位") + private String errorUnit; + } diff --git a/detection/src/main/java/com/njcn/gather/err/pojo/po/PqErrSysDtls.java b/detection/src/main/java/com/njcn/gather/err/pojo/po/PqErrSysDtls.java index 62a411b3..b7fa9e9a 100644 --- a/detection/src/main/java/com/njcn/gather/err/pojo/po/PqErrSysDtls.java +++ b/detection/src/main/java/com/njcn/gather/err/pojo/po/PqErrSysDtls.java @@ -86,5 +86,14 @@ public class PqErrSysDtls implements Serializable { */ private Integer sort; + /** + * 1绝对值、2相对值 + */ + private Integer valueType; + + /** + * 误差单位 + */ + private String errorUnit; }