mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-19 01:15:40 +08:00
15 lines
364 B
Go
15 lines
364 B
Go
package form
|
|
|
|
type ChatMsgType string
|
|
|
|
const (
|
|
ChatMsgTypeText ChatMsgType = "text" // 文本消息
|
|
ChatMsgTypeInterruptResume ChatMsgType = "interruptResume" // 恢复中断
|
|
)
|
|
|
|
type ChatMsg struct {
|
|
SessionId string `json:"sessionId"`
|
|
Type ChatMsgType `json:"type"`
|
|
Content string `json:"content" binding:"required"`
|
|
}
|