Commit 4e2acdbd by 宋毅

tj

parent 7c5943cb
......@@ -73,7 +73,7 @@ class APIBase {
appkey: pobj.appInfo ? pobj.appInfo.uapp_key : "",
requestId: req.requestId,
op: req.classname + "/" + methodname,
content: JSON.stringify(e.stack),
content: e.stack,
clientIp: pobj.clientIp,
agent: req.uagent,
optitle: "api调用出现异常,请联系管理员",
......
......@@ -656,7 +656,7 @@ class OrderInfoService extends ServiceBase {
paramWhere.entTime = entTime;
}
sql += " LIMIT " + pageSize + " OFFSET " + from + " order by id desc";
sql += " order by id desc LIMIT " + pageSize + " OFFSET " + from;
var list = await this.customQuery(sql, paramWhere);
var result = system.getResultSuccess(list);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment