2023-04-24 15:21:17 +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:38:26 +08:00
|
|
|
Content string `xorm:"LONGTEXT" json:"content"`
|
2023-04-24 15:21:17 +08:00
|
|
|
CreateAt int64 `xorm:"created" json:"createAt"`
|
|
|
|
UpdateAt int64 `xorm:"updated" json:"updateAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func InsertLog(taskLog *TaskLog) {
|
|
|
|
_, _ = DB.Insert(taskLog)
|
|
|
|
}
|