| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Map; |
| | | |
| | | public interface MallGoodsMapper extends BaseMapper<MallGoods> { |
| | | |
| | | IPage<MallGoodsListVo> selectMallGoodsListQueryInPage(@Param("record") MallGoodsQueryDto queryDto, Page<MallGoodsListVo> page); |
| | |
| | | Integer selectMallGoodsCountByGoodsNo(@Param("goodsNo")String goodsNo); |
| | | |
| | | AdminMailGoodsDetailVo selectMallGoodsInfoById(@Param("id")long id); |
| | | |
| | | Map<String, BigDecimal> selectGoodsStockAndVolume(@Param("id") Long id); |
| | | } |