mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
17 lines
291 B
Go
17 lines
291 B
Go
package model
|
|
|
|
import (
|
|
"SamWaf/model/baseorm"
|
|
)
|
|
|
|
/*
|
|
*
|
|
延迟信息
|
|
*/
|
|
type DelayMsg struct {
|
|
baseorm.BaseOrm
|
|
DelayType string `json:"delay_type"` //操作类型
|
|
DelayTile string `json:"delay_title"` //操作标题
|
|
DelayContent string `json:"delay_content"` //操作内容
|
|
}
|