24 lines
1.5 KiB
Go
24 lines
1.5 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// QrtzSimpropTriggers is the golang structure for table qrtz_simprop_triggers.
|
|
type QrtzSimpropTriggers 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:""` //
|
|
StrProp1 string `json:"sTRPROP1" orm:"STR_PROP_1" description:""` //
|
|
StrProp2 string `json:"sTRPROP2" orm:"STR_PROP_2" description:""` //
|
|
StrProp3 string `json:"sTRPROP3" orm:"STR_PROP_3" description:""` //
|
|
IntProp1 int `json:"iNTPROP1" orm:"INT_PROP_1" description:""` //
|
|
IntProp2 int `json:"iNTPROP2" orm:"INT_PROP_2" description:""` //
|
|
LongProp1 int64 `json:"lONGPROP1" orm:"LONG_PROP_1" description:""` //
|
|
LongProp2 int64 `json:"lONGPROP2" orm:"LONG_PROP_2" description:""` //
|
|
DecProp1 float64 `json:"dECPROP1" orm:"DEC_PROP_1" description:""` //
|
|
DecProp2 float64 `json:"dECPROP2" orm:"DEC_PROP_2" description:""` //
|
|
BoolProp1 string `json:"bOOLPROP1" orm:"BOOL_PROP_1" description:""` //
|
|
BoolProp2 string `json:"bOOLPROP2" orm:"BOOL_PROP_2" description:""` //
|
|
}
|