反馈信息列表,详情修改

This commit is contained in:
chy
2025-06-06 10:26:54 +08:00
parent 830f9c236b
commit 74a54fb24d
6 changed files with 35 additions and 24 deletions

View File

@ -2,10 +2,9 @@ package feedback
import (
"context"
"server/api/feedback/v1"
"server/internal/model"
"server/internal/service"
"server/api/feedback/v1"
)
func (c *ControllerV1) InfoFeedback(ctx context.Context, req *v1.InfoFeedbackReq) (res *v1.InfoFeedbackRes, err error) {
@ -24,9 +23,9 @@ func (c *ControllerV1) InfoFeedback(ctx context.Context, req *v1.InfoFeedbackReq
FeedbackType: out.FeedbackType,
Status: out.Status,
Reply: out.Reply,
CreateTime: out.CreateTime.Unix(),
UpdateTime: out.UpdateTime.Unix(),
DeleteTime: out.DeleteTime.Unix(),
CreateTime: out.CreateTime,
UpdateTime: out.UpdateTime,
DeleteTime: out.DeleteTime,
StoreId: out.StoreId,
MerchantId: out.MerchantId,
}, nil