chroe: echarts unless import opt

This commit is contained in:
engigu
2024-01-25 11:38:45 +08:00
parent af3d8876a2
commit f7f8c2d35d
5 changed files with 44 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ type SendTasksLogs struct {
ID int `gorm:"primary_key" json:"id" `
TaskID string `json:"task_id" gorm:"type:varchar(12) comment '任务id';default:'';index:task_id"`
Log string `json:"log" gorm:"type:text comment '日志';"`
Status int `json:"status" gorm:"type:int comment '状态';default:0;"`
Status *int `json:"status" gorm:"type:int comment '状态';default:0;"`
CallerIp string `json:"caller_ip" gorm:"type:varchar(256) comment '发送者的ip';default:'';"`
CreatedOn util.Time `json:"created_on" gorm:"type:timestamp comment '创建时间';default:current_timestamp;"`