|
@@ -138,6 +138,18 @@ router.post("/updateColl", (req, res) => {
|
|
|
postmysql3(req, res, "update_coll");
|
|
|
|
|
|
|
|
|
+});
|
|
|
+
|
|
|
+//获取用户订阅信息 xlh
|
|
|
+router.post("/selectSub", (req, res) => {
|
|
|
+ postmysql3(req, res, "select_sub");
|
|
|
+});
|
|
|
+
|
|
|
+//更新用户订阅信息 xlh
|
|
|
+router.post("/updateSub", (req, res) => {
|
|
|
+ postmysql3(req, res, "update_sub");
|
|
|
+
|
|
|
+
|
|
|
});
|
|
|
|
|
|
|