shish 2 лет назад
Родитель
Сommit
10954d2618

+ 2 - 2
biz-ghs/custom/classes/CustomBalanceClass.php → biz-ghs/custom/classes/CustomBalanceChangeClass.php

@@ -8,9 +8,9 @@ use common\components\noticeUtil;
 use common\components\util;
 use bizHd\base\classes\BaseClass;
 
-class CustomBalanceClass extends BaseClass
+class CustomBalanceChangeClass extends BaseClass
 {
 
-    public static $baseFile = '\bizGhs\custom\models\CustomBalance';
+    public static $baseFile = '\bizGhs\custom\models\CustomBalanceChange';
 
 }

+ 2 - 2
biz-ghs/custom/models/CustomBalance.php → biz-ghs/custom/models/CustomBalanceChange.php

@@ -2,12 +2,12 @@
 namespace bizGhs\custom\models;
 use bizHd\base\models\Base;
 
-class CustomBalance extends Base
+class CustomBalanceChange extends Base
 {
 
     public static function tableName()
     {
-        return 'xhCustomBalance';
+        return 'xhCustomBalanceChange';
     }
 
 }

+ 2 - 2
biz-ghs/custom/services/CustomBalanceService.php → biz-ghs/custom/services/CustomBalanceChangeService.php

@@ -11,9 +11,9 @@ use bizGhs\custom\classes\CustomClass;
 use common\components\orderSn;
 use common\components\util;
 
-class CustomBalanceService extends BaseService
+class CustomBalanceChangeService extends BaseService
 {
 
-    public static $baseFile = '\bizGhs\custom\classes\CustomBalanceClass';
+    public static $baseFile = '\bizGhs\custom\classes\CustomBalanceChangeClass';
 
 }

+ 2 - 2
biz-ghs/ghs/classes/GhsBalanceClass.php → biz-ghs/ghs/classes/GhsBalanceChangeClass.php

@@ -7,9 +7,9 @@ use bizGhs\order\classes\PurchaseOrderClass;
 use bizGhs\shop\classes\ShopClass;
 use common\components\imgUtil;
 
-class GhsBalanceClass extends BaseClass
+class GhsBalanceChangeClass extends BaseClass
 {
 
-    public static $baseFile = '\bizGhs\ghs\models\GhsBalance';
+    public static $baseFile = '\bizGhs\ghs\models\GhsBalanceChange';
 
 }

+ 2 - 2
biz-ghs/ghs/models/GhsBalance.php → biz-ghs/ghs/models/GhsBalanceChange.php

@@ -4,12 +4,12 @@ namespace bizGhs\ghs\models;
 
 use bizGhs\base\models\Base;
 
-class GhsBalance extends Base
+class GhsBalanceChange extends Base
 {
 
     public static function tableName()
     {
-        return 'xhGhsBalance';
+        return 'xhGhsBalanceChange';
     }
 
 }

+ 13 - 0
biz-ghs/ghs/services/GhsBalanceChangeService.php

@@ -0,0 +1,13 @@
+<?php
+
+namespace bizGhs\ghs\services;
+
+use bizGhs\base\services\BaseService;
+use Yii;
+
+class GhsBalanceChangeService extends BaseService
+{
+
+    public static $baseFile = '\bizGhs\ghs\classes\GhsBalanceChangeClass';
+
+}

+ 0 - 13
biz-ghs/ghs/services/GhsBalanceService.php

@@ -1,13 +0,0 @@
-<?php
-
-namespace bizGhs\ghs\services;
-
-use bizGhs\base\services\BaseService;
-use Yii;
-
-class GhsBalanceService extends BaseService
-{
-
-    public static $baseFile = '\bizGhs\ghs\classes\GhsBalanceClass';
-
-}