心灵空间标签实体

This commit is contained in:
wuchunlei
2025-02-06 14:26:08 +08:00
parent e0da11c5bf
commit d8e7c90c01
32 changed files with 561 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CoursePsyche;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CoursePsycheDao extends MPJBaseMapper<CoursePsyche> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CoursePsycheMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CoursePsycheMarketDao extends MPJBaseMapper<CoursePsycheMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseToPsyche;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseToPsycheDao extends MPJBaseMapper<CourseToPsyche> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseToPsycheMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseToPsycheMarketDao extends MPJBaseMapper<CourseToPsycheMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.ShopProductPsycheLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductPsycheLabelDao extends MPJBaseMapper<ShopProductPsycheLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.ShopProductPsycheMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductPsycheMarketDao extends MPJBaseMapper<ShopProductPsycheMarket> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.ShopProductToPsycheLabel;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToPsycheLabelDao extends MPJBaseMapper<ShopProductToPsycheLabel> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.ShopProductToPsycheMarket;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToPsycheMarketDao extends MPJBaseMapper<ShopProductToPsycheMarket> {
}