test
This commit is contained in:
parent
1a89497dde
commit
db3812406e
|
|
@ -44,9 +44,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<result property="monthlySales" column="monthly_sales"/>
|
<result property="monthlySales" column="monthly_sales"/>
|
||||||
<result property="goodProbability" column="good_probability"/>
|
<result property="goodProbability" column="good_probability"/>
|
||||||
</collection>
|
</collection>
|
||||||
<collection property="tasteNameList" ofType="string">
|
<!-- <collection property="tasteNameList" ofType="string">-->
|
||||||
<result property="tasteName" column="taste_name"/>
|
<!-- <result property="tasteName" column="taste_name"/>-->
|
||||||
</collection>
|
<!-- </collection>-->
|
||||||
</collection>
|
</collection>
|
||||||
</collection>
|
</collection>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
@ -163,6 +163,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
left join alloc_canteen ac on mr.canteen_id = ac.canteen_id
|
left join alloc_canteen ac on mr.canteen_id = ac.canteen_id
|
||||||
left join alloc_stall ass on mr.stall_id = ass.stall_id
|
left join alloc_stall ass on mr.stall_id = ass.stall_id
|
||||||
left join menu_dishes_base mdb on md.base_dishes_id = mdb.base_dishes_id
|
left join menu_dishes_base mdb on md.base_dishes_id = mdb.base_dishes_id
|
||||||
|
-- left join menu_taste_dishes mtd on md.dishes_id = mtd.dishes_id
|
||||||
|
-- left join menu_dishes_taste mdtt on mtd.taste_id = mdtt.taste_id
|
||||||
where
|
where
|
||||||
mrd.apply_date = #{applyDate}
|
mrd.apply_date = #{applyDate}
|
||||||
and mr.recipe_id = #{recipeId}
|
and mr.recipe_id = #{recipeId}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue