shish il y a 2 ans
Parent
commit
f251b5f0a3
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4 2
      app-ghs/controllers/RenewController.php

+ 4 - 2
app-ghs/controllers/RenewController.php

@@ -21,14 +21,16 @@ class RenewController extends BaseController
 {
 
     //需要续费 ssh 20240426
-    public function actionNeed()
+    public function actionNeedRemind()
     {
         //注册满半年以上
 
         //标记为需要续费的批发店,并且没有续费过的
 
         //当前员工当天没有提醒过的
-        util::success(['need' => 1]);
+        $currentDeadline = '2024-04-27';
+        $newDeadline = '2025-04-27';
+        util::success(['need' => 1, 'currentDeadline' => $currentDeadline, 'newDeadline' => $newDeadline]);
     }
 
     //当天不需要再提醒 ssh 20240426