|
@@ -31,6 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="educationName" column="education_name"/>
|
|
|
<result property="projectName" column="project_name"/>
|
|
|
<result property="businessName" column="business_name"/>
|
|
|
+ <result property="aliasName" column="alias_name"/>
|
|
|
<result property="majorId" column="major_id"/>
|
|
|
<result property="subjectIdList" column="subject_ids"/>
|
|
|
<collection property="goodsList" column="recommend_id" select="findGoodsList"/>
|
|
@@ -52,6 +53,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
g.goods_id,
|
|
|
g.goods_name,
|
|
|
g.stand_price,
|
|
|
+ g.line_price,
|
|
|
rg.sort,
|
|
|
g.code,
|
|
|
g.year,
|
|
@@ -70,6 +72,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="selectListByBo" parameterType="com.zhongzheng.modules.activity.bo.ActivityRecommendQueryBo" resultMap="ActivityRecommendVoResult">
|
|
|
SELECT ar.*, cet.education_name,
|
|
|
cpt.project_name,
|
|
|
+ cb.alias_name,
|
|
|
cb.business_name from activity_recommend ar
|
|
|
LEFT JOIN course_education_type cet ON ar.education_type_id = cet.id
|
|
|
LEFT JOIN course_project_type cpt ON ar.project_id = cpt.id
|