Commit cb54fe8c authored by vicotor's avatar vicotor

update task type

parent 12f36263
...@@ -16,6 +16,10 @@ type TaskType struct { ...@@ -16,6 +16,10 @@ type TaskType struct {
Cmd string `orm:"column(cmd)" db:"cmd" json:"cmd" form:"cmd"` Cmd string `orm:"column(cmd)" db:"cmd" json:"cmd" form:"cmd"`
Workload int64 `orm:"column(workload)" db:"workload" json:"workload" form:"workload"` Workload int64 `orm:"column(workload)" db:"workload" json:"workload" form:"workload"`
ApiPath string `orm:"column(api_path)" db:"api_path" json:"api_path" form:"api_path"` ApiPath string `orm:"column(api_path)" db:"api_path" json:"api_path" form:"api_path"`
ImageName string `orm:"column(image_name)" db:"image_name" json:"image_name" form:"image_name"`
SignUrl string `orm:"column(sign_url)" db:"sign_url" json:"sign_url" form:"sign_url"`
Username string `orm:"column(username)" db:"username" json:"username" form:"username"`
Password string `orm:"column(password)" db:"password" json:"password" form:"password"`
CreatedTime time.Time `orm:"column(created_time)" db:"created_time" json:"created_time" form:"created_time"` // 创建时间 CreatedTime time.Time `orm:"column(created_time)" db:"created_time" json:"created_time" form:"created_time"` // 创建时间
UpdatedTime time.Time `orm:"column(updated_time)" db:"updated_time" json:"updated_time" form:"updated_time"` // 更新时间 UpdatedTime time.Time `orm:"column(updated_time)" db:"updated_time" json:"updated_time" form:"updated_time"` // 更新时间
Deleted int64 `orm:"column(deleted)" db:"deleted" json:"deleted" form:"deleted"` // 逻辑删除 Deleted int64 `orm:"column(deleted)" db:"deleted" json:"deleted" form:"deleted"` // 逻辑删除
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment