Kaynağa Gözat

集合相关方法

shish 2 yıl önce
ebeveyn
işleme
d13a914e42

+ 10 - 0
app-ghs/controllers/JhController.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace ghs\controllers;
+
+use common\components\util;
+
+class JhController extends PublicController
+{
+
+}

+ 12 - 0
biz-ghs/jh/classes/JhClass.php

@@ -0,0 +1,12 @@
+<?php
+
+namespace bizGhs\jh\classes;
+
+use bizGhs\base\classes\BaseClass;
+
+class JhClass extends BaseClass
+{
+
+    public static $baseFile = '\bizGhs\jh\models\Jh';
+
+}

+ 12 - 0
biz-ghs/jh/classes/JhItemClass.php

@@ -0,0 +1,12 @@
+<?php
+
+namespace bizGhs\jh\classes;
+
+use bizGhs\base\classes\BaseClass;
+
+class JhItemClass extends BaseClass
+{
+
+    public static $baseFile = '\bizGhs\jh\models\JhItem';
+
+}

+ 13 - 0
biz-ghs/jh/models/Jh.php

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

+ 13 - 0
biz-ghs/jh/models/JhItem.php

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

+ 11 - 0
biz-ghs/jh/services/JhItemService.php

@@ -0,0 +1,11 @@
+<?php
+namespace bizGhs\jh\services;
+
+use bizGhs\base\services\BaseService;
+
+class JhItemService extends BaseService
+{
+
+    public static $baseFile = '\bizGhs\jh\classes\JhItemClass';
+
+}

+ 11 - 0
biz-ghs/jh/services/JhService.php

@@ -0,0 +1,11 @@
+<?php
+namespace bizGhs\jh\services;
+
+use bizGhs\base\services\BaseService;
+
+class JhService extends BaseService
+{
+
+    public static $baseFile = '\bizGhs\jh\classes\JhClass';
+
+}