23 lines
1.5 KiB
Go
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:""` //
|
|
}
|