KKSU
2024-05-23 6fa780a0d13b02d7a3cda9ae50fd656525873a47
src/main/resources/mapper/modules/MallGoodsCategoryMapper.xml
@@ -67,9 +67,12 @@
        SELECT m.id parentId,m.name name  FROM mall_goods_category m where m.parent_id = 0
    </select>
    <select id="selectChildCategaryById" resultType="cc.mrbird.febs.mall.entity.MallGoodsCategory">
        select * from mall_goods_category
        where parent_id = #{id}
    </select>
    <select id="getAllCategorys" resultType="cc.mrbird.febs.mall.vo.AdminMallGoodsCategoryTreeVo">
        SELECT m.id parentId,m.name name  FROM mall_goods_category m ;
    </select>
</mapper>