From ae68969922e7365a1f07d3a2d8b5f13c303c8017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=95=B8=E9=9D=9E?= <8153694@qq.com> Date: Fri, 22 Nov 2024 11:03:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BA=A7=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mortals/xhx/common/pdu/gen/Props.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fill-manager/src/main/java/com/mortals/xhx/common/pdu/gen/Props.java diff --git a/fill-manager/src/main/java/com/mortals/xhx/common/pdu/gen/Props.java b/fill-manager/src/main/java/com/mortals/xhx/common/pdu/gen/Props.java new file mode 100644 index 0000000..b29bca0 --- /dev/null +++ b/fill-manager/src/main/java/com/mortals/xhx/common/pdu/gen/Props.java @@ -0,0 +1,29 @@ +package com.mortals.xhx.common.pdu.gen; + +import com.alibaba.fastjson.annotation.JSONField; +import lombok.Data; + +/** + * 閰嶇疆 + * + * @author: zxfei + * @date: 2021/10/15 10:27 + */ +@Data +public class Props { + + @JSONField(name="props") + private Props props; + + @JSONField(name="children") + private String children; + + @JSONField(name="multiple") + private Boolean multiple; + + @JSONField(name="label") + private String label; + + @JSONField(name="value") + private String value; +} \ No newline at end of file -- 2.24.3