用户反馈信息基本CRUD

This commit is contained in:
chy
2025-06-05 17:43:22 +08:00
parent 77067adf33
commit 830f9c236b
23 changed files with 682 additions and 58 deletions

View File

@ -0,0 +1,15 @@
// =================================================================================
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
// =================================================================================
package feedback
import (
"server/api/feedback"
)
type ControllerV1 struct{}
func NewV1() feedback.IFeedbackV1 {
return &ControllerV1{}
}