feat(theme): 购买主题后自动写入用户主题表

This commit is contained in:
2025-12-11 14:23:52 +08:00
parent 262c822585
commit f937b03940
11 changed files with 221 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yolo.keyborad.mapper.KeyboardUserThemesMapper">
<resultMap id="BaseResultMap" type="com.yolo.keyborad.model.entity.KeyboardUserThemes">
<!--@mbg.generated-->
<!--@Table keyboard_user_themes-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="theme_id" jdbcType="BIGINT" property="themeId" />
<result column="user_id" jdbcType="BIGINT" property="userId" />
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
<result column="view_deleted" jdbcType="BOOLEAN" property="viewDeleted" />
<result column="updated_at" jdbcType="BOOLEAN" property="updatedAt" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, theme_id, user_id, created_at, view_deleted, updated_at
</sql>
</mapper>