From e868054e8ff6adddad7195663e7dc11a85ceab01 Mon Sep 17 00:00:00 2001 From: Ziin Date: Mon, 7 Jul 2025 14:39:48 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=A4=A7=E5=93=A5=E6=95=B0=E6=8D=AE=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=98=AF=E5=90=A6=E5=88=86=E9=85=8D=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/admin/bigbrother/vo/BigBrotherPageReqVO.java | 2 ++ .../controller/admin/bigbrother/vo/BigBrotherRespVO.java | 3 +++ .../controller/admin/bigbrother/vo/BigBrotherSaveReqVO.java | 3 +++ .../tkdata/dal/dataobject/bigbrother/BigBrotherDO.java | 2 ++ .../main/resources/mapper/bigbrother/BigBrotherMapper.xml | 5 ++++- 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherPageReqVO.java b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherPageReqVO.java index 170e330..69b5c51 100644 --- a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherPageReqVO.java +++ b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherPageReqVO.java @@ -51,6 +51,8 @@ public class BigBrotherPageReqVO extends PageParam { @Schema(description = "该数据所属的账号id", example = "30487") private Long userId; + @Schema(description = "是否分配", example = "0") + private Byte isAssigned; /** * 大哥的等级 diff --git a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherRespVO.java b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherRespVO.java index 14c821b..473a191 100644 --- a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherRespVO.java +++ b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherRespVO.java @@ -68,4 +68,7 @@ public class BigBrotherRespVO { @ExcelProperty("创建时间") private LocalDateTime createTime; + @Schema(description = "是否分配") + @ExcelProperty("是否分配") + private Byte isAssigned; } \ No newline at end of file diff --git a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherSaveReqVO.java b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherSaveReqVO.java index 90dfd3d..159319a 100644 --- a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherSaveReqVO.java +++ b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/controller/admin/bigbrother/vo/BigBrotherSaveReqVO.java @@ -52,4 +52,7 @@ public class BigBrotherSaveReqVO { @Schema(description = "操作状态", example = "30487") private Byte operation_status; + @Schema(description = "是否分配", example = "0") + private Byte isAssigned; + } \ No newline at end of file diff --git a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/dal/dataobject/bigbrother/BigBrotherDO.java b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/dal/dataobject/bigbrother/BigBrotherDO.java index 3cbf25b..f55a99c 100644 --- a/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/dal/dataobject/bigbrother/BigBrotherDO.java +++ b/tkdata-model-server/src/main/java/cn/iocoder/yudao/module/tkdata/dal/dataobject/bigbrother/BigBrotherDO.java @@ -80,4 +80,6 @@ public class BigBrotherDO extends BaseDO { * 该数据所属的租户id */ private Long tenantId; + + private Byte isAssigned; } \ No newline at end of file diff --git a/tkdata-model-server/src/main/resources/mapper/bigbrother/BigBrotherMapper.xml b/tkdata-model-server/src/main/resources/mapper/bigbrother/BigBrotherMapper.xml index 434f421..80d61c2 100644 --- a/tkdata-model-server/src/main/resources/mapper/bigbrother/BigBrotherMapper.xml +++ b/tkdata-model-server/src/main/resources/mapper/bigbrother/BigBrotherMapper.xml @@ -38,7 +38,7 @@