@@ -185,6 +185,7 @@ public class TenantServiceImpl implements TenantService { | |||
} | |||
} | |||
log.info("业务系统完成创建"); | |||
return JsonResult.success(vo); | |||
} | |||
@@ -45,6 +45,9 @@ | |||
<if test="query.username != null and query.username != ''"> | |||
and u.username LIKE concat('%',#{query.username},'%') | |||
</if> | |||
<if test="query.username != null"> | |||
and t.status =#{query.status} | |||
</if> | |||
ORDER BY t.create_time desc | |||
</select> | |||
<select id="selectById" resultType="com.tuoheng.model.po.TenantPo"> |