|
@@ -11,6 +11,7 @@ import (
|
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
|
"jy/src/jfw/modules/subscribepay/src/entity/bidCreditReport"
|
|
|
"jy/src/jfw/modules/subscribepay/src/util"
|
|
|
+ "time"
|
|
|
)
|
|
|
|
|
|
type BidCreditReport struct {
|
|
@@ -125,6 +126,7 @@ func (this *BidCreditReport) UpdateReport() {
|
|
|
bidCreditReport.BidCreditReport.Create(Id)
|
|
|
updateData["reportId"] = Id
|
|
|
updateData["method"] = "jianyu.upload"
|
|
|
+ updateData["createtime"] = time.Now().Unix()
|
|
|
util.Mgo_log.Save("bidcredit_report_log", updateData)
|
|
|
return nil
|
|
|
}()
|