代码拉取完成,页面将自动刷新
package schema
import "gitee.com/linqwen/momo/base"
type TaskLogCreateDTO struct {
ScheduleId int64 `gorm:"column:schedule_id" json:"ScheduleId,string" binding:"omitempty" form:"ScheduleId" comment:"ScheduleId" `
ScheduleLogId int64 `gorm:"column:schedule_log_id" json:"ScheduleLogId,string" binding:"omitempty" form:"ScheduleLogId" comment:"ScheduleLogId"`
TaskIdentify string `gorm:"column:task_identify" json:"TaskIdentify" form:"TaskIdentify" comment:"TaskIdentify"`
StatusCode int `gorm:"column:status_code;default:0" json:"StatusCode" form:"StatusCode" comment:"StatusCode"`
Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"`
Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"`
}
type TaskLogQueryDTO struct {
Id int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"Id,string"`
CreatedAt_datele string `gorm:"column:created_at_datele" json:"CreatedAt_datele" form:"CreatedAt_datele"`
CreatedAt_datege string `gorm:"column:created_at_datege" json:"CreatedAt_datege" form:"CreatedAt_datege"`
ScheduleId int64 `gorm:"column:schedule_id" json:"ScheduleId,string" form:"ScheduleId" comment:"ScheduleId" `
ScheduleLogId int64 `gorm:"column:schedule_log_id" json:"ScheduleLogId,string" form:"ScheduleLogId" comment:"ScheduleLogId"`
TaskIdentify string `gorm:"column:task_identify" json:"TaskIdentify" form:"TaskIdentify" comment:"TaskIdentify"`
StatusCode int `gorm:"column:status_code;default:0" json:"StatusCode,omitempty" form:"StatusCode" comment:"StatusCode" validate:"omitempty"`
Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"`
Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"`
}
type TaskLogVO struct {
Id int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"Id,string"`
ScheduleId int64 `gorm:"column:schedule_id" json:"ScheduleId,string" form:"ScheduleId" comment:"ScheduleId"`
ScheduleLogId int64 `gorm:"column:schedule_log_id" json:"ScheduleLogId,string" form:"ScheduleLogId" comment:"ScheduleLogId"`
TaskIdentify string `gorm:"column:task_identify" json:"TaskIdentify" form:"TaskIdentify" comment:"TaskIdentify"`
StatusCode int `gorm:"column:status_code;default:0" json:"StatusCode" form:"StatusCode" comment:"StatusCode"`
Message string `gorm:"column:message" json:"Message" form:"Message" comment:"Message"`
Data string `gorm:"column:data" json:"Data" form:"Data" comment:"Data"`
CreatedAt base.ISO8601Time `gorm:"column:created_at"`
UpdatedAt base.ISO8601Time `gorm:"column:updated_at"`
}
func (c TaskLogVO) GetDetailVO() interface{} { return c }
func (c TaskLogVO) GetListVO() interface{} { return c }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。