线下活动

This commit is contained in:
wuchunlei
2024-11-26 15:13:57 +08:00
parent a0c42ecea0
commit 941659b28f
10 changed files with 263 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.OfflineActivity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface OfflineActivityDao extends MPJBaseMapper<OfflineActivity> {
}

View File

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