This website works better with JavaScript.
Home
Explore
Help
Sign In
EggPlanet
/
egg_app
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
update
master
dengbiao
1 week ago
parent
30ef7d8b2a
commit
805eee0b28
1 changed files
with
17 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+17
-0
app/task/svc/svc_deal_platform_revenue_data.go
+ 17
- 0
app/task/svc/svc_deal_platform_revenue_data.go
View File
@@ -0,0 +1,17 @@
package svc
import (
"applet/app/utils/logx"
"fmt"
"xorm.io/xorm"
)
func DealPlatformRevenueData(eg *xorm.Engine, dbName string) {
fmt.Println("deal_platform_revenue_data...")
defer func() {
if err := recover(); err != nil {
_ = logx.Error(err)
}
}()
}
Write
Preview
Loading…
Cancel
Save