From 4a8009e51b236c8de961b643c885543a680efe89 Mon Sep 17 00:00:00 2001 From: zhaoxiaohao <913652501@qq.com> Date: Tue, 30 Jun 2020 16:30:32 +0800 Subject: [PATCH] 修改bug,,网关添加短信修改密码的端口 --- kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysCompanyMapper.xml | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysCompanyMapper.xml b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysCompanyMapper.xml index 33532fc..afd038f 100644 --- a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysCompanyMapper.xml +++ b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysCompanyMapper.xml @@ -19,7 +19,7 @@ and org_id = #{p.orgId} </if> <if test="p.companyName != null and p.companyName !=''"> - and company_name = #{p.companyName} + and company_name like '%${p.companyName}%' </if> <if test="p.companyArea != null and p.companyArea !=''"> and company_area = #{p.companyArea} @@ -63,6 +63,7 @@ <if test="p.updateTime != null and p.updateTime !=''"> and update_time = #{p.updateTime} </if> + <include refid="com.kidgrow.usercenter.mapper.SysRoleOrganizationMapper.Role_Organization"></include> </where> </sql> -- Gitblit v1.8.0