moonsflyer пре 5 месеци
родитељ
комит
4e0a653bd2
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      app/shopapi/controller/AccountLogController.php

+ 3 - 3
app/shopapi/controller/AccountLogController.php

@@ -16,7 +16,7 @@
 
 namespace app\shopapi\controller;
 
-use app\shopapi\lists\giftCardLists;
+use app\shopapi\lists\GiftCardLists;
 
 /**
  * 账户流水控制器
@@ -36,8 +36,8 @@ class AccountLogController extends BaseShopController
         return $this->dataLists();
     }
 
-    public function giftCardlists()
+    public function giftCardInfolists()
     {
-        return $this->dataLists(new giftCardLists());
+        return $this->dataLists(new GiftCardLists());
     }
 }