|
@@ -28,11 +28,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="hostPc" column="host_pc"/>
|
|
|
<result property="hostH5" column="host_h5"/>
|
|
|
<result property="hostLive" column="host_live"/>
|
|
|
+ <result property="hostH5Seller" column="host_h5_seller"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="findTenantId" parameterType="com.zhongzheng.modules.system.bo.SysTenantQueryBo" resultType="long">
|
|
|
select tenant_id
|
|
|
- from sys_tenant where (host_pc = #{hostPc} or host_h5 = #{hostH5} or host_live = #{hostLive})
|
|
|
+ from sys_tenant where (host_pc = #{hostPc} or host_h5 = #{hostH5} or host_live = #{hostLive} or host_h5_seller = #{hostH5Seller})
|
|
|
</select>
|
|
|
|
|
|
|