新增人生轨迹模块代码

This commit is contained in:
2025-12-21 17:44:59 +08:00
parent f3c06ce6af
commit cfd12f01db
14 changed files with 1156 additions and 72 deletions
@@ -0,0 +1,15 @@
package com.emotion.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.emotion.entity.UserProfile;
import org.apache.ibatis.annotations.Mapper;
/**
* 用户档案 Mapper 接口
*
* @author huazhongmin
* @date 2025-12-21
*/
@Mapper
public interface UserProfileMapper extends BaseMapper<UserProfile> {
}