From daad571e9422d9b60c3970392f3aa81f4832fb61 Mon Sep 17 00:00:00 2001 From: luliqiang <kidgrow> Date: Tue, 09 Mar 2021 18:38:36 +0800 Subject: [PATCH] 部门信息中增加是否私有云和私有云服务器Guuid字段 --- kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml index 0766182..4db9964 100644 --- a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml +++ b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml @@ -54,6 +54,9 @@ <if test="p.accountsCount != null and p.accountsCount !=''"> and accounts_count = #{p.accountsCount} </if> + <if test="p.isPrivate != null and p.isPrivate !=''"> + and is_private = #{p.isPrivate} + </if> </where> </sql> -- Gitblit v1.8.0