Browse Source

feat: add two api endpoints for ppt operation records

add selectPPTOp and addPPTOp endpoints to handle querying and adding operation records
lsc 1 week ago
parent
commit
2d2a41e7b9
1 changed files with 11 additions and 0 deletions
  1. 11 0
      pbl.js

+ 11 - 0
pbl.js

@@ -10707,6 +10707,17 @@ router.route('/getServerTime').all((req, res, next) => {
 });
 
 
+//操作记录
+router.route('/selectPPTOp').all((req, res, next) => {
+    postmysql(req, res, "selectPPTOp");
+});
+
+//添加操作记录
+router.route('/addPPTOp').all((req, res, next) => {
+    postmysql(req, res, "addPPTOp");
+});
+
+
 function generateAPIKey(username) {
     let timeStamp = new Date().getTime();