Commit c3b2ec39 by 吴迪

【新增】修改bug

parent 9ca496c0
...@@ -2,6 +2,7 @@ package io.office.modules.manage.dao; ...@@ -2,6 +2,7 @@ package io.office.modules.manage.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import io.office.datasource.annotation.DataSource;
import io.office.modules.manage.entity.ShortCodeEntity; import io.office.modules.manage.entity.ShortCodeEntity;
import io.office.modules.manage.vo.request.ShortCodeVo; import io.office.modules.manage.vo.request.ShortCodeVo;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
...@@ -18,6 +19,6 @@ import java.util.List; ...@@ -18,6 +19,6 @@ import java.util.List;
@Mapper @Mapper
public interface ShortCodeDao extends BaseMapper<ShortCodeEntity> { public interface ShortCodeDao extends BaseMapper<ShortCodeEntity> {
@DataSource("slave2")
List<ShortCodeVo> getList(ShortCodeVo shortCodeVo); List<ShortCodeVo> getList(ShortCodeVo shortCodeVo);
} }
...@@ -57,7 +57,7 @@ dynamic: ...@@ -57,7 +57,7 @@ dynamic:
password: ryr@3647we password: ryr@3647we
slave2: slave2:
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
url: jdbc:sqlserver://192.168.0.85:1433;DatabaseName=gs108 url: jdbc:sqlserver://192.168.0.85:1433;DatabaseName=center_outer
username: test2 username: test2
password: test2 password: test2
##多数据源的配置 ##多数据源的配置
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<select id="getList" parameterType="io.office.modules.manage.vo.request.ShortCodeVo" resultType="io.office.modules.manage.vo.request.ShortCodeVo"> <select id="getList" parameterType="io.office.modules.manage.vo.request.ShortCodeVo" resultType="io.office.modules.manage.vo.request.ShortCodeVo">
select top 300 * from center_outer.short_code a left join firm b on a.f_id=b.f_id select top 300 * from short_code a left join firm b on a.f_id=b.f_id
<where> <where>
<if test="shortCode!=null and shortCode!=''"> <if test="shortCode!=null and shortCode!=''">
a.short_code = #{shortCode} a.short_code = #{shortCode}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment