MCPcopy Create free account
hub / github.com/TalkingData/owl / CreateStrategyEventProcess

Method CreateStrategyEventProcess

controller/mysql.go:422–429  ·  view source on GitHub ↗
(strategy_event_id int64, strategy_event_status int, process_user, process_comments, process_time string)

Source from the content-addressed store, hash-verified

420}
421
422func (this *db) CreateStrategyEventProcess(strategy_event_id int64, strategy_event_status int, process_user, process_comments, process_time string) error {
423 _, err := this.Exec("INSERT INTO strategy_event_process VALUES(?, ?, ?, ?, DEFAULT)", strategy_event_id, strategy_event_status, process_user, process_comments)
424 if err != nil {
425 lg.Error(err.Error())
426 return err
427 }
428 return err
429}

Callers 1

processSingleEventFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected