增加后台管理模块

This commit is contained in:
2025-10-27 23:57:31 +08:00
parent 3c1ba8e801
commit 0016453f20
420 changed files with 5650 additions and 1449 deletions
@@ -0,0 +1,15 @@
package com.emotion.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.emotion.entity.Admin;
import org.apache.ibatis.annotations.Mapper;
/**
* 管理员Mapper接口
*
* @author huazhongmin
* @date 2025-10-27
*/
@Mapper
public interface AdminMapper extends BaseMapper<Admin> {
}