Helius
2022-05-07 8d41b14c0c71f3d68a5c35ded5081e96bb148056
src/main/resources/mapper/modules/MallGoodsSkuMapper.xml
@@ -14,4 +14,16 @@
        where a.id=#{id}
    </select>
    <delete  id="deleteByGoodsId">
        delete from mall_goods_sku where goods_id = #{id}
    </delete>
    <select id="selectByGoodId" resultType="cc.mrbird.febs.mall.vo.AdminMailGoodsSkuDetailVo">
        select a.*,b.name styleName from mall_goods_sku a
            left join mall_goods_style b on a.style_id=b.ID
        where a.goods_id = #{id}
    </select>
</mapper>