Documentation ¶
Index ¶
Constants ¶
View Source
const ( TableSchedulerRecordName = "scheduler_record" FieldSchedulerRecordId = "id" FieldSchedulerRecordAlias = "alias" FieldSchedulerRecordName = "name" FieldSchedulerRecordDate = "date" FieldSchedulerRecordServiceName = "service_name" FieldSchedulerRecordFuncName = "func_name" FieldSchedulerRecordStatus = "status" FieldSchedulerRecordCode = "code" FieldSchedulerRecordErrorMsg = "error_msg" FieldSchedulerRecordParentId = "parent_id" FieldSchedulerRecordCreateTimestamp = "create_timestamp" FieldSchedulerRecordModifyTimestamp = "modify_timestamp" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type SchedulerRecord ¶
type SchedulerRecord struct { Id string `json:"id"` Alias string `json:"alias"` Name string `json:"name"` Date time.Time `json:"date"` ServiceName string `json:"service_name"` FuncName string `json:"func_name"` Status string `json:"status"` Code sql.NullString `json:"code"` ErrorMsg sql.NullString `json:"error_msg"` ParentId sql.NullString `json:"parent_id"` CreateTimestamp time.Time `json:"create_timestamp"` ModifyTimestamp sql.NullTime `json:"modify_timestamp"` }
Scheduler Record
func (*SchedulerRecord) String ¶
func (s *SchedulerRecord) String() string
Click to show internal directories.
Click to hide internal directories.