You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
458 B
21 lines
458 B
package weeklyhonor |
|
|
|
import ( |
|
"context" |
|
"go-common/library/log" |
|
"time" |
|
) |
|
|
|
// HonorInfoc log honor msg send status |
|
func (d *Dao) HonorInfoc(c context.Context, mid int64, success int32) (err error) { |
|
ctime := time.Now().Format("20060102 15:04:05") |
|
i := map[string]interface{}{ |
|
"mid": mid, |
|
"ctime": ctime, |
|
"exc": "", |
|
"success": success, |
|
} |
|
log.Warn("infocproc create infoc(%v)", i) |
|
err = d.infoc.Info(mid, ctime, "", success) |
|
return |
|
}
|
|
|