主页-我的课程

This commit is contained in:
wuchunlei
2024-04-11 09:05:34 +08:00
parent fe14ece2a3
commit b705aec11d
68 changed files with 1772 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductMedicineLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductMedicineLabelDao extends BaseMapper<ShopProductMedicineLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductMedicineMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductMedicineMarketDao extends BaseMapper<ShopProductMedicineMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductSociologyLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductSociologyLabelDao extends BaseMapper<ShopProductSociologyLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductSociologyMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductSociologyMarketDao extends BaseMapper<ShopProductSociologyMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductToMedicineLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToMedicineLabelDao extends BaseMapper<ShopProductToMedicineLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductToMedicineMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToMedicineMarketDao extends BaseMapper<ShopProductToMedicineMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductToSociologyLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToSociologyLabelDao extends BaseMapper<ShopProductToSociologyLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.ShopProductToSociologyMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToSociologyMarketDao extends BaseMapper<ShopProductToSociologyMarket> {
}