摘要:
package main import ( "context" "log" ) // 需要处理的请求数据 type Request struct { Ctx context.Context Id int } // 定义处理器接口 type Handler interface { Process(re 阅读全文
posted @ 2025-04-17 16:20
cn_zt
阅读(23)
评论(0)
推荐(0)
技术栈 gin gorm rabbitmq 数据库表结构: CREATE TABLE `article` ( `id` int NOT NULL AUTO_INCREMENT, `article_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NUL 阅读全文