Jelajahi Sumber

feat: add two api endpoints for ppt operation records

add selectPPTOp and addPPTOp endpoints to handle querying and adding operation records
lsc 1 Minggu lalu
induk
melakukan
2d2a41e7b9
1 mengubah file dengan 11 tambahan dan 0 penghapusan
  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();