From 423587a2ea93c9ce15d7687598db3c9bcd9a3c9f Mon Sep 17 00:00:00 2001 From: xiejun <309858992@qq.com> Date: 星期四, 21 十二月 2023 13:39:16 +0800 Subject: [PATCH] 获取集团分类根节点前端传null传入后端直接改为空字符串bug修复 --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingTask.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingTask.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingTask.java index 67c61d6..ba40497 100644 --- a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingTask.java +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/entity/DockingTask.java @@ -93,7 +93,7 @@ * 鍙戦�佺被鍨嬫樉绀烘枃鏈� */ @ApiModelProperty(value = "鍙戦�佺被鍨嬫樉绀烘枃鏈�") - @TableField(exist = true) + @TableField(exist = false) private String sendTypeText; /** @@ -107,7 +107,7 @@ * 鏄惁鍙戦�佹垚鍔熸樉绀烘枃鏈� */ @ApiModelProperty(value = "鏄惁鍙戦�佹垚鍔熸樉绀烘枃鏈�") - @TableField(exist = true) + @TableField(exist = false) private String sendFlagText; -- Gitblit v1.9.3