first commit

This commit is contained in:
xin
2024-07-19 13:58:44 +08:00
commit 3efe6cb5b6
42 changed files with 7606 additions and 0 deletions

View File

@ -0,0 +1,9 @@
const db=require("../comman/db")
exports.getfilelistinfo=(req, res) => {
sql='SELECT d.*, i.last_online FROM filebrowerinfo d JOIN frpinfo i ON d.name = i.id;'
db.query(sql,(err,result)=>{
res.send(result);
})
}