更新服务

This commit is contained in:
aixianling
2022-04-01 16:05:56 +08:00
parent 94ce411071
commit 948cc94338
19 changed files with 137 additions and 76 deletions

View File

@@ -0,0 +1,13 @@
const dbUtils = require("../../utils/dbUitls");
module.exports = {
action: "/sys/user",
method: "post",
execute: (request, response) => {
dbUtils.query(`select * from sys_user`).then(res => {
response.send({
code: 0,
data: res
})
})
}
}