hpds_control_center/model/TaskLog.go

15 lines
443 B
Go
Raw Permalink Normal View History

2023-04-24 15:14:04 +08:00
package model
type TaskLog struct {
TaskLogId int64 `xorm:"not null pk autoincr BIGINT(11)" json:"taskLogId"`
TaskId int64 `xorm:"INT(11) index" json:"taskId"`
NodeId int64 `xorm:"INT(11) index" json:"nodeId"`
2023-06-17 09:39:13 +08:00
Content string `xorm:"LONGTEXT" json:"content"`
2023-04-24 15:14:04 +08:00
CreateAt int64 `xorm:"created" json:"createAt"`
UpdateAt int64 `xorm:"updated" json:"updateAt"`
}
func InsertLog(taskLog *TaskLog) {
_, _ = DB.Insert(taskLog)
}