From 153f2187046f2b5d640cb937e0a385def8dd4648 Mon Sep 17 00:00:00 2001 From: 许鹏程 <1821349743@qq.com> Date: 星期四, 28 十一月 2024 17:37:15 +0800 Subject: [PATCH] 故障上报 设备台账 --- src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java b/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java index 04c68bf..66593ab 100644 --- a/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java +++ b/src/main/java/com/product/mobile/core/entity/FaceFieldEntity.java @@ -1,6 +1,8 @@ package com.product.mobile.core.entity; import java.util.List; +import java.util.Map; +import java.util.HashMap; /** * @Author cheng @@ -90,7 +92,23 @@ private String type; private String length; + + /** + * 闅愯棌 1=鏄紝0=鍚� + */ + private String hidden; + + public String getHidden() { + return hidden; + } + + + public void setHidden(String hidden) { + this.hidden = hidden; + } + private Map<String, Object> otherParams = new HashMap<>(); + public String getType() { return type; } @@ -260,4 +278,13 @@ public void setTable(String tableUuid) { this.table = tableUuid; } + public Map<String, Object> getOtherParams() { + return otherParams; + } + public void setOtherParams(Map<String, Object> otherParams) { + this.otherParams = otherParams; + } + public Object putOtherParam(String key, Object value) { + return otherParams.put(key, value); + } } -- Gitblit v1.9.2