KKSU
2023-11-27 b5dfb801199fb639ef7e68cb0b33c5923383c69d
src/main/resources/mapper/modules/MallProductSellRecordMapper.xml
@@ -19,4 +19,17 @@
        where a.sell_id = #{productSellId}
    </select>
    <select id="selectListBySellId" resultType="cc.mrbird.febs.mall.entity.MallProductSellRecord">
        select a.*
        from mall_product_sell_record a
        where a.sell_id = #{sellId}
            and a.state = #{state}
    </select>
    <select id="selectListByState" resultType="cc.mrbird.febs.mall.entity.MallProductSellRecord">
        select a.*
        from mall_product_sell_record a
        where a.state = #{state}
    </select>
</mapper>