问题反馈

This commit is contained in:
wuchunlei
2024-07-04 17:21:32 +08:00
parent e5839ca3e7
commit b266811b8a
5 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.SysFeedback;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface SysFeedbackDao extends MPJBaseMapper<SysFeedback> {
}