This commit is contained in:
张成
2026-04-01 13:42:29 +08:00
parent 1d22fb28e2
commit 2d900ef2ac
9 changed files with 187 additions and 8 deletions

View File

@@ -19,6 +19,7 @@ module.exports = {
offset,
limit: page_size,
order: [["id", "DESC"]],
attributes: { exclude: ["secret_cipher"] },
});
ctx.success({ rows, count });
},
@@ -85,6 +86,7 @@ module.exports = {
where,
limit: 10000,
order: [["id", "DESC"]],
attributes: { exclude: ["secret_cipher"] },
});
ctx.success({ rows });
},