操作日志

This commit is contained in:
苏尹岚
2020-01-07 11:03:07 +08:00
parent f05fa6302f
commit a0d833d4ae
2 changed files with 5 additions and 2 deletions

View File

@@ -1,9 +1,11 @@
package event
func AddOperateEvent() {
import "git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
func AddOperateEvent(ctx *jxcontext.Context) {
}
func AddOperateEventDetail() {
func AddOperateEventDetail(ctx *jxcontext.Context) {
}

View File

@@ -1096,6 +1096,7 @@ func GetOrdersSupplement(db *DaoDB, storIDs, vendorIDs, statuss []int, vendorOrd
} else if IsReverse == 1 {
sql += " AND link_id <> 0"
}
sql += " ORDER BY supplement_time DESC"
sql += " LIMIT ? OFFSET ?"
sqlParams = append(sqlParams, pageSize, offset)
Begin(db)