mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
* fix: 代码合并 * feat:支持数据库版本兼容,目前兼容了oracle11g部分特性 * fix: 修改数据同步bug,数据sql里指定修改字段别,导致未正确记录修改字段值 * feat: 数据库迁移支持定时迁移和迁移到sql文件
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package dto
|
|
|
|
import "mayfly-go/pkg/utils/anyx"
|
|
|
|
// ************** 系统消息 **************
|
|
|
|
const SuccessSysMsgType = 1
|
|
const ErrorSysMsgType = 0
|
|
const InfoSysMsgType = 2
|
|
const InfoTypeSqlExecProgress = 22
|
|
|
|
// websocket消息
|
|
type SysMsg struct {
|
|
Type int `json:"type"` // 消息类型
|
|
Category string `json:"category"` // 消息类别
|
|
Title string `json:"title"` // 消息标题
|
|
Msg string `json:"msg"` // 消息内容
|
|
|
|
ClientId string
|
|
}
|
|
|
|
func (sm *SysMsg) WithTitle(title string) *SysMsg {
|
|
sm.Title = title
|
|
return sm
|
|
}
|
|
|
|
func (sm *SysMsg) WithCategory(category string) *SysMsg {
|
|
sm.Category = category
|
|
return sm
|
|
}
|
|
|
|
func (sm *SysMsg) WithMsg(msg any) *SysMsg {
|
|
sm.Msg = anyx.ToString(msg)
|
|
return sm
|
|
}
|
|
|
|
func (sm *SysMsg) WithClientId(clientId string) *SysMsg {
|
|
sm.ClientId = clientId
|
|
return sm
|
|
}
|
|
|
|
// 普通消息
|
|
func InfoSysMsg(title string, msg any) *SysMsg {
|
|
return &SysMsg{Type: InfoSysMsgType, Title: title, Msg: anyx.ToString(msg)}
|
|
}
|
|
func InfoSqlProgressMsg(title string, msg any) *SysMsg {
|
|
return &SysMsg{Type: InfoTypeSqlExecProgress, Title: title, Msg: anyx.ToString(msg)}
|
|
}
|
|
|
|
// 成功消息
|
|
func SuccessSysMsg(title string, msg any) *SysMsg {
|
|
return &SysMsg{Type: SuccessSysMsgType, Title: title, Msg: anyx.ToString(msg)}
|
|
}
|
|
|
|
// 错误消息
|
|
func ErrSysMsg(title string, msg any) *SysMsg {
|
|
return &SysMsg{Type: ErrorSysMsgType, Title: title, Msg: anyx.ToString(msg)}
|
|
}
|