From 9314ee848f4e8276f9f9be97e1720f3dbd1f5a29 Mon Sep 17 00:00:00 2001 From: chenjiahe <763432473@qq.com> Date: 星期二, 19 三月 2024 14:53:25 +0800 Subject: [PATCH] 新增标签获取 --- phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java b/phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java index 1ed9883..c63bd87 100644 --- a/phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java +++ b/phis-feign/src/main/java/com/hz/his/vo/label/LabelVo.java @@ -15,6 +15,8 @@ private String id; /**鏍囩鍚嶇О*/ private String name; + /**鏄惁鑷畾涔夋爣绛撅細0鍚�1鏄�*/ + private Integer isCustom; public LabelVo() { } @@ -23,4 +25,10 @@ this.id = id; this.name = name; } + + public LabelVo(String id, String name, Integer isCustom) { + this.id = id; + this.name = name; + this.isCustom = isCustom; + } } -- Gitblit v1.8.0