|
|
@ -2,11 +2,10 @@
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.glxp.api.admin.dao.basic.BussinessLocalTypeDao">
|
|
|
|
<mapper namespace="com.glxp.api.admin.dao.basic.BussinessLocalTypeDao">
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterList" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterList" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
SELECT basic_bustype_local.* ,basic_bussiness_type.mainAction ,basic_bustype_origin.name originName from
|
|
|
|
SELECT basic_bustype_local.*, basic_bussiness_type.mainAction, basic_bustype_origin.name originName
|
|
|
|
basic_bustype_local
|
|
|
|
from basic_bustype_local
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
LEFT JOIN basic_bustype_origin on basic_bustype_local.originAction = basic_bustype_origin.action
|
|
|
|
LEFT JOIN basic_bustype_origin on basic_bustype_local.originAction = basic_bustype_origin.action
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
@ -24,12 +23,12 @@
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
order by basic_bustype_local.updateTime desc
|
|
|
|
order by basic_bustype_local.updateTime desc
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterUnBind" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterUnBind" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
select basic_bustype_local.* from basic_bustype_local
|
|
|
|
select basic_bustype_local.*
|
|
|
|
|
|
|
|
from basic_bustype_local
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
localAction is NULL
|
|
|
|
localAction is NULL
|
|
|
@ -43,12 +42,12 @@
|
|
|
|
AND originAction = #{originAction}
|
|
|
|
AND originAction = #{originAction}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterAllList" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterAllList" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
SELECT * from basic_bustype_local
|
|
|
|
SELECT *
|
|
|
|
|
|
|
|
from basic_bustype_local
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="name != ''and name != null">
|
|
|
|
<if test="name != ''and name != null">
|
|
|
|
AND basic_bustype_local.name LIKE concat('%', #{name}, '%')
|
|
|
|
AND basic_bustype_local.name LIKE concat('%', #{name}, '%')
|
|
|
@ -63,23 +62,41 @@
|
|
|
|
AND basic_bustype_local.spUse = #{spUse}
|
|
|
|
AND basic_bustype_local.spUse = #{spUse}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<if test="lastUpdateTime != null and lastUpdateTime != ''">
|
|
|
|
<if test="lastUpdateTime != null and lastUpdateTime != ''">
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{lastUpdateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
|
|
|
]]>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterJoin" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterJoin" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
SELECT basic_bustype_local.id,basic_bustype_local.name localName, basic_bustype_local.action
|
|
|
|
SELECT basic_bustype_local.id,
|
|
|
|
localAction,originAction,
|
|
|
|
basic_bustype_local.name localName,
|
|
|
|
|
|
|
|
basic_bustype_local.action
|
|
|
|
|
|
|
|
localAction,
|
|
|
|
|
|
|
|
originAction,
|
|
|
|
basic_bussiness_type.name,
|
|
|
|
basic_bussiness_type.name,
|
|
|
|
basic_bussiness_type.action,basic_bussiness_type.checkEnable,basic_bustype_local.advanceType,basic_bustype_local.changeEnable,
|
|
|
|
basic_bussiness_type.action,
|
|
|
|
basic_bustype_local.spUse,basic_bussiness_type.storageCode,basic_bussiness_type.corpType,basic_bussiness_type.mainAction
|
|
|
|
basic_bussiness_type.checkEnable,
|
|
|
|
,basic_bussiness_type.prefix,basic_bustype_local.prefix localPrefix,basic_bustype_local.preIn,
|
|
|
|
basic_bustype_local.advanceType,
|
|
|
|
basic_bussiness_type.ullageFill, basic_bussiness_type.scanPreIn, basic_bussiness_type.vailInv,
|
|
|
|
basic_bustype_local.changeEnable,
|
|
|
|
|
|
|
|
basic_bustype_local.spUse,
|
|
|
|
|
|
|
|
basic_bussiness_type.storageCode,
|
|
|
|
|
|
|
|
basic_bussiness_type.corpType,
|
|
|
|
|
|
|
|
basic_bussiness_type.mainAction
|
|
|
|
|
|
|
|
,
|
|
|
|
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
|
|
|
|
basic_bustype_local.prefix localPrefix,
|
|
|
|
|
|
|
|
basic_bustype_local.preIn,
|
|
|
|
|
|
|
|
basic_bustype_local.preInBack,
|
|
|
|
|
|
|
|
basic_bussiness_type.ullageFill,
|
|
|
|
|
|
|
|
basic_bussiness_type.scanPreIn,
|
|
|
|
|
|
|
|
basic_bussiness_type.vailInv,
|
|
|
|
basic_bussiness_type.codeFillCheck
|
|
|
|
basic_bussiness_type.codeFillCheck
|
|
|
|
, basic_bustype_local.supplementAll,basic_bussiness_type.orderVisibleType
|
|
|
|
,
|
|
|
|
|
|
|
|
basic_bustype_local.supplementAll,
|
|
|
|
|
|
|
|
basic_bussiness_type.orderVisibleType
|
|
|
|
FROM basic_bustype_local
|
|
|
|
FROM basic_bustype_local
|
|
|
|
inner join basic_bussiness_type
|
|
|
|
inner join basic_bussiness_type
|
|
|
|
on basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
|
on basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
@ -96,19 +113,21 @@
|
|
|
|
<if test="spUse != ''and spUse != null">
|
|
|
|
<if test="spUse != ''and spUse != null">
|
|
|
|
AND basic_bustype_local.spUse = #{spUse}
|
|
|
|
AND basic_bustype_local.spUse = #{spUse}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
group by basic_bussiness_type.action
|
|
|
|
group by basic_bussiness_type.action
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterJoinOrigin" parameterType="com.glxp.api.admin.req.basic.BusOriginJoinFilterRequest"
|
|
|
|
<select id="filterJoinOrigin" parameterType="com.glxp.api.admin.req.basic.BusOriginJoinFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.res.basic.BussinessOriginTypeResponse">
|
|
|
|
resultType="com.glxp.api.admin.res.basic.BussinessOriginTypeResponse">
|
|
|
|
select
|
|
|
|
select basic_bussiness_type.action,
|
|
|
|
basic_bussiness_type.action,basic_bussiness_type.`name`,
|
|
|
|
basic_bussiness_type.`name`,
|
|
|
|
basic_bussiness_type.localAction,basic_bustype_local.`name` localName,
|
|
|
|
basic_bussiness_type.localAction,
|
|
|
|
basic_bustype_origin.action originAction,basic_bustype_origin.name originName,
|
|
|
|
basic_bustype_local.`name` localName,
|
|
|
|
thirdSys,thirdSysName,basic_bustype_origin.`enable` originEnable
|
|
|
|
basic_bustype_origin.action originAction,
|
|
|
|
|
|
|
|
basic_bustype_origin.name originName,
|
|
|
|
|
|
|
|
thirdSys,
|
|
|
|
|
|
|
|
thirdSysName,
|
|
|
|
|
|
|
|
basic_bustype_origin.`enable` originEnable
|
|
|
|
from basic_bussiness_type
|
|
|
|
from basic_bussiness_type
|
|
|
|
left JOIN basic_bustype_local on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
left JOIN basic_bustype_local on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
left JOIN basic_bustype_origin on basic_bustype_local.originAction = basic_bustype_origin.action
|
|
|
|
left JOIN basic_bustype_origin on basic_bustype_local.originAction = basic_bustype_origin.action
|
|
|
@ -128,8 +147,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterJoinByUser" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterJoinByUser" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
SELECT
|
|
|
|
SELECT basic_bustype_local.id,
|
|
|
|
basic_bustype_local.id,
|
|
|
|
|
|
|
|
basic_bustype_local.NAME localName,
|
|
|
|
basic_bustype_local.NAME localName,
|
|
|
|
basic_bustype_local.action localAction,
|
|
|
|
basic_bustype_local.action localAction,
|
|
|
|
originAction,
|
|
|
|
originAction,
|
|
|
@ -146,6 +164,8 @@
|
|
|
|
basic_bussiness_type.genUnit,
|
|
|
|
basic_bussiness_type.genUnit,
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
basic_bustype_local.prefix,
|
|
|
|
basic_bustype_local.prefix,
|
|
|
|
|
|
|
|
basic_bustype_local.preIn,
|
|
|
|
|
|
|
|
basic_bustype_local.preInBack,
|
|
|
|
basic_bussiness_type.ullageFill,
|
|
|
|
basic_bussiness_type.ullageFill,
|
|
|
|
basic_bussiness_type.scanPreIn,
|
|
|
|
basic_bussiness_type.scanPreIn,
|
|
|
|
basic_bussiness_type.vailInv,
|
|
|
|
basic_bussiness_type.vailInv,
|
|
|
@ -153,12 +173,10 @@
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
basic_bustype_local.prefix localPrefix,
|
|
|
|
basic_bustype_local.prefix localPrefix,
|
|
|
|
basic_bussiness_type.ullageFill,
|
|
|
|
basic_bussiness_type.ullageFill,
|
|
|
|
basic_bussiness_type.scanPreIn,
|
|
|
|
|
|
|
|
basic_bussiness_type.vailInv,
|
|
|
|
basic_bussiness_type.vailInv,
|
|
|
|
basic_bussiness_type.codeFillCheck,
|
|
|
|
basic_bussiness_type.codeFillCheck,
|
|
|
|
supplementAll
|
|
|
|
supplementAll
|
|
|
|
FROM
|
|
|
|
FROM basic_bustype_local
|
|
|
|
basic_bustype_local
|
|
|
|
|
|
|
|
INNER JOIN basic_bussiness_type ON basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
|
INNER JOIN basic_bussiness_type ON basic_bustype_local.action = basic_bussiness_type.localAction
|
|
|
|
INNER JOIN inv_bustype_user ON basic_bussiness_type.action = inv_bustype_user.scAction
|
|
|
|
INNER JOIN inv_bustype_user ON basic_bussiness_type.action = inv_bustype_user.scAction
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
@ -191,12 +209,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterLeftJoin" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
<select id="filterLeftJoin" parameterType="com.glxp.api.admin.req.basic.BussinessLocalTypeFilterRequest"
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
SELECT basic_bustype_local.id,basic_bustype_local.name localName, basic_bustype_local.action
|
|
|
|
SELECT basic_bustype_local.id,
|
|
|
|
localAction,originAction,
|
|
|
|
basic_bustype_local.name localName,
|
|
|
|
|
|
|
|
basic_bustype_local.action
|
|
|
|
|
|
|
|
localAction,
|
|
|
|
|
|
|
|
originAction,
|
|
|
|
basic_bussiness_type.name,
|
|
|
|
basic_bussiness_type.name,
|
|
|
|
basic_bussiness_type.action,basic_bussiness_type.checkEnable,basic_bustype_local.advanceType,basic_bustype_local.changeEnable,
|
|
|
|
basic_bussiness_type.action,
|
|
|
|
basic_bustype_local.spUse,basic_bussiness_type.storageCode,basic_bussiness_type.corpType,basic_bussiness_type.mainAction
|
|
|
|
basic_bussiness_type.checkEnable,
|
|
|
|
,basic_bussiness_type.prefix,basic_bustype_local.prefix localPrefix,preIn,supplementAll
|
|
|
|
basic_bustype_local.advanceType,
|
|
|
|
|
|
|
|
basic_bustype_local.changeEnable,
|
|
|
|
|
|
|
|
basic_bustype_local.spUse,
|
|
|
|
|
|
|
|
basic_bussiness_type.storageCode,
|
|
|
|
|
|
|
|
basic_bussiness_type.corpType,
|
|
|
|
|
|
|
|
basic_bussiness_type.mainAction
|
|
|
|
|
|
|
|
,
|
|
|
|
|
|
|
|
basic_bussiness_type.prefix,
|
|
|
|
|
|
|
|
basic_bustype_local.prefix localPrefix,
|
|
|
|
|
|
|
|
preIn,
|
|
|
|
|
|
|
|
basic_bustype_local.preInBack,
|
|
|
|
|
|
|
|
supplementAll
|
|
|
|
FROM basic_bustype_local
|
|
|
|
FROM basic_bustype_local
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
LEFT JOIN basic_bussiness_type on basic_bussiness_type.localAction = basic_bustype_local.action
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
@ -217,9 +249,9 @@
|
|
|
|
parameterType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
parameterType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
replace
|
|
|
|
replace
|
|
|
|
INTO basic_bustype_local
|
|
|
|
INTO basic_bustype_local
|
|
|
|
(action, name, remark, originAction, advanceType, changeEnable, spUse,updateTime,prefix,preIn,supplementAll)
|
|
|
|
(action, name, remark, originAction, advanceType, changeEnable, spUse, updateTime, prefix, preIn,
|
|
|
|
values (
|
|
|
|
supplementAll, preInBack)
|
|
|
|
#{action},
|
|
|
|
values (#{action},
|
|
|
|
#{name},
|
|
|
|
#{name},
|
|
|
|
#{remark},
|
|
|
|
#{remark},
|
|
|
|
#{originAction},
|
|
|
|
#{originAction},
|
|
|
@ -229,25 +261,48 @@
|
|
|
|
#{updateTime},
|
|
|
|
#{updateTime},
|
|
|
|
#{prefix},
|
|
|
|
#{prefix},
|
|
|
|
#{preIn},
|
|
|
|
#{preIn},
|
|
|
|
#{supplementAll}
|
|
|
|
#{supplementAll}, #{preInBack})
|
|
|
|
)
|
|
|
|
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateBusLocalType" parameterType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
<update id="updateBusLocalType" parameterType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
UPDATE basic_bustype_local
|
|
|
|
UPDATE basic_bustype_local
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
<if test="action != null">action = #{action},</if>
|
|
|
|
<if test="action != null">
|
|
|
|
<if test="name != null">name = #{name},</if>
|
|
|
|
action = #{action},
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
</if>
|
|
|
|
<if test="originAction != null">originAction = #{originAction},</if>
|
|
|
|
<if test="name != null">
|
|
|
|
<if test="advanceType != null">advanceType = #{advanceType},</if>
|
|
|
|
name = #{name},
|
|
|
|
<if test="changeEnable != null">changeEnable = #{changeEnable},</if>
|
|
|
|
</if>
|
|
|
|
<if test="spUse != null">spUse = #{spUse},</if>
|
|
|
|
<if test="remark != null">
|
|
|
|
<if test="updateTime != null">updateTime = #{updateTime},</if>
|
|
|
|
remark = #{remark},
|
|
|
|
<if test="prefix != null">prefix = #{prefix},</if>
|
|
|
|
</if>
|
|
|
|
<if test="preIn != null">preIn = #{preIn},</if>
|
|
|
|
<if test="originAction != null">
|
|
|
|
<if test="supplementAll != null">supplementAll = #{supplementAll},</if>
|
|
|
|
originAction = #{originAction},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="advanceType != null">
|
|
|
|
|
|
|
|
advanceType = #{advanceType},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="changeEnable != null">
|
|
|
|
|
|
|
|
changeEnable = #{changeEnable},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="spUse != null">
|
|
|
|
|
|
|
|
spUse = #{spUse},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
|
|
|
updateTime = #{updateTime},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="prefix != null">
|
|
|
|
|
|
|
|
prefix = #{prefix},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="preIn != null">
|
|
|
|
|
|
|
|
preIn = #{preIn},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="supplementAll != null">
|
|
|
|
|
|
|
|
supplementAll = #{supplementAll},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="preInBack != null">
|
|
|
|
|
|
|
|
preInBack = #{preInBack},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
WHERE id = #{id}
|
|
|
|
WHERE id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
@ -283,7 +338,8 @@
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectByName" parameterType="string" resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
<select id="selectByName" parameterType="string"
|
|
|
|
|
|
|
|
resultType="com.glxp.api.admin.entity.basic.BussinessLocalTypeEntity">
|
|
|
|
select *
|
|
|
|
select *
|
|
|
|
FROM basic_bustype_local
|
|
|
|
FROM basic_bustype_local
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
@ -293,7 +349,6 @@
|
|
|
|
<if test="id != ''and id != null">
|
|
|
|
<if test="id != ''and id != null">
|
|
|
|
AND basic_bustype_local.id != #{id}
|
|
|
|
AND basic_bustype_local.id != #{id}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</mapper>
|
|
|
|
</mapper>
|
|
|
|