shish 2 жил өмнө
parent
commit
0203ac1bd7

+ 12 - 0
biz-ghs/book/classes/BookChangeClass.php

@@ -0,0 +1,12 @@
+<?php
+namespace bizGhs\book\classes;
+use bizGhs\base\classes\BaseClass;
+use common\components\util;
+use Yii;
+
+class BookChangeClass extends BaseClass
+{
+
+    public static $baseFile = '\bizGhs\book\models\BookChange';
+
+}

+ 12 - 0
biz-ghs/book/classes/BookOnChangeClass.php

@@ -0,0 +1,12 @@
+<?php
+namespace bizGhs\book\classes;
+use bizGhs\base\classes\BaseClass;
+use common\components\util;
+use Yii;
+
+class BookOnChangeClass extends BaseClass
+{
+
+    public static $baseFile = '\bizGhs\book\models\BookOnChange';
+
+}

+ 13 - 0
biz-ghs/book/models/BookChange.php

@@ -0,0 +1,13 @@
+<?php
+namespace bizGhs\book\models;
+use bizGhs\base\models\Base;
+
+class BookChange extends Base
+{
+
+    public static function tableName()
+    {
+        return 'xhBookChange';
+    }
+
+}

+ 13 - 0
biz-ghs/book/models/BookOnChange.php

@@ -0,0 +1,13 @@
+<?php
+namespace bizGhs\book\models;
+use bizGhs\base\models\Base;
+
+class BookOnChange extends Base
+{
+
+    public static function tableName()
+    {
+        return 'xhBookOnChange';
+    }
+
+}

+ 13 - 0
biz-ghs/book/services/BookChangeService.php

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

+ 13 - 0
biz-ghs/book/services/BookOnChangeService.php

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