This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// =================================================================================
// 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:""` //
}