feat(user): 新增用户反馈提交功能

This commit is contained in:
2025-12-17 18:20:05 +08:00
parent 198650556f
commit abfac871fd
7 changed files with 133 additions and 0 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.KeyboardFeedback;
/*
* @author: ziin
* @date: 2025/12/17 17:06
*/
public interface KeyboardFeedbackMapper extends BaseMapper<KeyboardFeedback> {
}