26 lines
1.6 KiB
Go
26 lines
1.6 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// QrtzTriggers is the golang structure for table qrtz_triggers.
|
|
type QrtzTriggers struct {
|
|
SchedName string `json:"sCHEDNAME" orm:"SCHED_NAME" description:""` //
|
|
TriggerName string `json:"tRIGGERNAME" orm:"TRIGGER_NAME" description:""` //
|
|
TriggerGroup string `json:"tRIGGERGROUP" orm:"TRIGGER_GROUP" description:""` //
|
|
JobName string `json:"jOBNAME" orm:"JOB_NAME" description:""` //
|
|
JobGroup string `json:"jOBGROUP" orm:"JOB_GROUP" description:""` //
|
|
Description string `json:"dESCRIPTION" orm:"DESCRIPTION" description:""` //
|
|
NextFireTime int64 `json:"nEXTFIRETIME" orm:"NEXT_FIRE_TIME" description:""` //
|
|
PrevFireTime int64 `json:"pREVFIRETIME" orm:"PREV_FIRE_TIME" description:""` //
|
|
Priority int `json:"pRIORITY" orm:"PRIORITY" description:""` //
|
|
TriggerState string `json:"tRIGGERSTATE" orm:"TRIGGER_STATE" description:""` //
|
|
TriggerType string `json:"tRIGGERTYPE" orm:"TRIGGER_TYPE" description:""` //
|
|
StartTime int64 `json:"sTARTTIME" orm:"START_TIME" description:""` //
|
|
EndTime int64 `json:"eNDTIME" orm:"END_TIME" description:""` //
|
|
CalendarName string `json:"cALENDARNAME" orm:"CALENDAR_NAME" description:""` //
|
|
MisfireInstr int `json:"mISFIREINSTR" orm:"MISFIRE_INSTR" description:""` //
|
|
JobData []byte `json:"jOBDATA" orm:"JOB_DATA" description:""` //
|
|
}
|