瀏覽代碼

feat: add two api endpoints for ppt operation records

add selectPPTOp and addPPTOp endpoints to handle querying and adding operation records
lsc 2 月之前
父節點
當前提交
2d2a41e7b9
共有 1 個文件被更改,包括 11 次插入 和 0 次删除
  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();