粉丝管理

This commit is contained in:
2026-06-03 12:43:07 +08:00
parent bdad17d77a
commit c40d7aabcb
8 changed files with 435 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.FanManagement;
import org.apache.ibatis.annotations.Mapper;
/**
* 粉丝管理表 Mapper
*/
@Mapper
public interface FanManagementMapper extends BaseMapper<FanManagement> {
}