Files
epic-go/internal/model/entity/qrtz_fired_triggers.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

23 lines
1.5 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
// QrtzFiredTriggers is the golang structure for table qrtz_fired_triggers.
type QrtzFiredTriggers struct {
SchedName string `json:"sCHEDNAME" orm:"SCHED_NAME" description:""` //
EntryId string `json:"eNTRYID" orm:"ENTRY_ID" description:""` //
TriggerName string `json:"tRIGGERNAME" orm:"TRIGGER_NAME" description:""` //
TriggerGroup string `json:"tRIGGERGROUP" orm:"TRIGGER_GROUP" description:""` //
InstanceName string `json:"iNSTANCENAME" orm:"INSTANCE_NAME" description:""` //
FiredTime int64 `json:"fIREDTIME" orm:"FIRED_TIME" description:""` //
SchedTime int64 `json:"sCHEDTIME" orm:"SCHED_TIME" description:""` //
Priority int `json:"pRIORITY" orm:"PRIORITY" description:""` //
State string `json:"sTATE" orm:"STATE" description:""` //
JobName string `json:"jOBNAME" orm:"JOB_NAME" description:""` //
JobGroup string `json:"jOBGROUP" orm:"JOB_GROUP" description:""` //
IsNonconcurrent string `json:"iSNONCONCURRENT" orm:"IS_NONCONCURRENT" description:""` //
RequestsRecovery string `json:"rEQUESTSRECOVERY" orm:"REQUESTS_RECOVERY" description:""` //
}