Explorar el Código

feat: add two api endpoints for ppt operation records

add selectPPTOp and addPPTOp endpoints to handle querying and adding operation records
lsc hace 1 semana
padre
commit
2d2a41e7b9
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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();