13 lines
594 B
Go
13 lines
594 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// QrtzCalendars is the golang structure for table qrtz_calendars.
|
|
type QrtzCalendars struct {
|
|
SchedName string `json:"sCHEDNAME" orm:"SCHED_NAME" description:""` //
|
|
CalendarName string `json:"cALENDARNAME" orm:"CALENDAR_NAME" description:""` //
|
|
Calendar []byte `json:"cALENDAR" orm:"CALENDAR" description:""` //
|
|
}
|