更新
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.peanut.modules.book.entity.BuyOrderProduct;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface BuyOrderProductDao extends BaseMapper<BuyOrderProduct> {
|
||||
public interface BuyOrderProductDao extends MPJBaseMapper<BuyOrderProduct> {
|
||||
}
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopProductBookEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface ShopProductBookDao extends BaseMapper<ShopProductBookEntity> {
|
||||
public interface ShopProductBookDao extends MPJBaseMapper<ShopProductBookEntity> {
|
||||
|
||||
List<Integer> getOrderBookId(String orderSn);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user