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,12 @@
package com.yolo.keyborad.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yolo.keyborad.model.entity.KeyboardUserThemes;
/*
* @author: ziin
* @date: 2025/12/11 13:31
*/
public interface KeyboardUserThemesMapper extends BaseMapper<KeyboardUserThemes> {
}