fix
Helius
2021-09-28 51d5eb2e8befedab840527ec3cb916b8021daf68
src/main/java/cc/mrbird/febs/mall/mapper/MallGoodsMapper.java
@@ -10,6 +10,10 @@
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
public interface MallGoodsMapper extends BaseMapper<MallGoods> {
    IPage<MallGoodsListVo> selectMallGoodsListQueryInPage(@Param("record") MallGoodsQueryDto queryDto, Page<MallGoodsListVo> page);
@@ -23,4 +27,8 @@
    Integer selectMallGoodsCountByGoodsNo(@Param("goodsNo")String goodsNo);
    AdminMailGoodsDetailVo selectMallGoodsInfoById(@Param("id")long id);
    Map<String, BigDecimal> selectGoodsStockAndVolume(@Param("id") Long id);
    List<MallGoods> selectMallGoodsByCategaryId(@Param("categaryId")Long id);
}