|
@@ -89,6 +89,7 @@
|
|
<result property="name" column="name"/>
|
|
<result property="name" column="name"/>
|
|
<result property="parentId" column="parent_id"/>
|
|
<result property="parentId" column="parent_id"/>
|
|
<result property="type" column="type"/>
|
|
<result property="type" column="type"/>
|
|
|
|
+ <result property="symbolName" column="symbolName"/>
|
|
<collection property="standardInfos" ofType="org.springblade.business.vo.StandardInfoConditionVo" select="findByJoinLeftId" column="{leftId=id}">
|
|
<collection property="standardInfos" ofType="org.springblade.business.vo.StandardInfoConditionVo" select="findByJoinLeftId" column="{leftId=id}">
|
|
</collection>
|
|
</collection>
|
|
</resultMap>
|
|
</resultMap>
|
|
@@ -107,7 +108,7 @@
|
|
|
|
|
|
<select id="getConditionSet" resultMap="BaseResultConditionSet">
|
|
<select id="getConditionSet" resultMap="BaseResultConditionSet">
|
|
select
|
|
select
|
|
- <include refid="Base_Column_Join_List"/>, concat(a.symbol,a.name)
|
|
|
|
|
|
+ <include refid="Base_Column_Join_List"/>, concat(a.symbol,a.name) symbolName
|
|
from
|
|
from
|
|
u_standard_info a
|
|
u_standard_info a
|
|
INNER JOIN u_standard_info_join b on a.id = b.standard_info_left_id and a.is_deleted = b.is_deleted
|
|
INNER JOIN u_standard_info_join b on a.id = b.standard_info_left_id and a.is_deleted = b.is_deleted
|
|
@@ -171,6 +172,7 @@
|
|
<result property="name" column="name"/>
|
|
<result property="name" column="name"/>
|
|
<result property="parentId" column="parent_id"/>
|
|
<result property="parentId" column="parent_id"/>
|
|
<result property="type" column="type"/>
|
|
<result property="type" column="type"/>
|
|
|
|
+ <result property="symbolName" column="symbolName"/>
|
|
<collection property="group" ofType="org.springblade.business.vo.StandardInfoPrivateJoinGroupVO" select="findByPrivateJoinLeftId" column="{leftId=id}">
|
|
<collection property="group" ofType="org.springblade.business.vo.StandardInfoPrivateJoinGroupVO" select="findByPrivateJoinLeftId" column="{leftId=id}">
|
|
</collection>
|
|
</collection>
|
|
</resultMap>
|
|
</resultMap>
|
|
@@ -189,7 +191,7 @@
|
|
</sql>
|
|
</sql>
|
|
<select id="getElementJoin" resultMap="BaseResultElementJoin">
|
|
<select id="getElementJoin" resultMap="BaseResultElementJoin">
|
|
select
|
|
select
|
|
- <include refid="Base_Column_Join_List"/>
|
|
|
|
|
|
+ <include refid="Base_Column_Join_List"/>, concat(a.symbol,a.name) symbolName
|
|
from
|
|
from
|
|
u_standard_info a
|
|
u_standard_info a
|
|
INNER JOIN u_standard_info_private_join b on a.id = b.standard_info_id and a.is_deleted = b.is_deleted
|
|
INNER JOIN u_standard_info_private_join b on a.id = b.standard_info_id and a.is_deleted = b.is_deleted
|