Merge remote-tracking branch 'origin/master' into wumedical/v1
# Conflicts: # src/main/java/com/peanut/modules/common/dao/ShopProductBookLabelDao.java # src/main/java/com/peanut/modules/common/dao/ShopProductBookMarketDao.java # src/main/java/com/peanut/modules/common/dao/ShopProductToBookLabelDao.java # src/main/java/com/peanut/modules/common/dao/ShopProductToBookMarketDao.java # src/main/java/com/peanut/modules/common/dao/ShopStoreDao.java # src/main/java/com/peanut/modules/common/entity/ShopProductBookLabel.java # src/main/java/com/peanut/modules/common/entity/ShopProductBookMarket.java # src/main/java/com/peanut/modules/common/entity/ShopProductToBookLabel.java # src/main/java/com/peanut/modules/common/entity/ShopProductToBookMarket.java # src/main/java/com/peanut/modules/common/entity/ShopStore.java
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopProductBookLabel;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface ShopProductBookLabelDao extends BaseMapper<ShopProductBookLabel> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopProductBookMarket;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface ShopProductBookMarketDao extends BaseMapper<ShopProductBookMarket> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopProductToBookLabel;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface ShopProductToBookLabelDao extends BaseMapper<ShopProductToBookLabel> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopProductToBookMarket;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface ShopProductToBookMarketDao extends BaseMapper<ShopProductToBookMarket> {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.book.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.book.entity.ShopStore;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface ShopStoreDao extends BaseMapper<ShopStore> {
|
||||
}
|
||||
Reference in New Issue
Block a user