Просмотр исходного кода

refactor(proto): 更新protobuf文件和相关代码

- 更新了protobuf文件中的字段定义,增加了item_instance_id字段
- 修改了相应的PHP类,添加了新的字段和相关的方法
- 更新了autoload文件,移除了未使用的类和新增了Res类
notfff 7 месяцев назад
Родитель
Сommit
5a1e208ac2

+ 1 - 1
config/proto_route.php

@@ -89,7 +89,7 @@ return array (
       7 => 'query_data',
     ),
   ),
-  'generated_at' => '+08:00 2025-05-20 16:49:45',
+  'generated_at' => '+08:00 2025-05-21 21:12:53',
   'conventions' => 
   array (
     'handler_namespace' => 'App\\Module\\AppGame\\Handler',

+ 22 - 16
protophp/GPBMetadata/Proto/Game.php

@@ -16,8 +16,8 @@ class Game
         }
         $pool->internalAddGeneratedFile(
             '
-ј
-proto/game.proto	uraus.kku"ù1
+Ï™
+proto/game.proto	uraus.kku"÷2
 Request;
 public_tokend (2%.uraus.kku.Request.RequestPublicToken;
 public_logine (2%.uraus.kku.Request.RequestPublicLoginA
@@ -107,27 +107,33 @@ shop_query
 os_version (	
 app_version (	
 device_name (	
-	device_id (	>
+	device_id (	S
 RequestLandFertilizer
-land_id (
-user_item_id (<
+land_id (
+item_id (
+item_instance_id (Q
 RequestLandWatering
-land_id (
-user_item_id (=
+land_id (
+item_id (
+item_instance_id (R
 RequestLandPesticide
-land_id (
-user_item_id (=
+land_id (
+item_id (
+item_instance_id (R
 RequestLandWeedicide
-land_id (
-user_item_id (%
+land_id (
+item_id (
+item_instance_id (%
 RequestLandHarvest
-land_id (>
+land_id (S
 RequestLandRemoveCrop
-land_id (
-user_item_id (7
+land_id (
+item_id (
+item_instance_id (L
 RequestLandSow
-land_id (
-user_item_id ( 
+land_id (
+item_id (
+item_instance_id ( 
 
RequestLandUp
 land_id ( 
 RequestUserData

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandFertilizer.php

@@ -24,9 +24,15 @@ class RequestLandFertilizer extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     * 物品实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandFertilizer extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地ID
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *           物品ID
+     *     @type int|string $item_instance_id
+     *           物品实例 id
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandFertilizer extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     * 物品实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     * 物品实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandPesticide.php

@@ -24,9 +24,15 @@ class RequestLandPesticide extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     *实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandPesticide extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地ID
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *           物品ID
+     *     @type int|string $item_instance_id
+     *          实例 id
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandPesticide extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     *实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     *实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandRemoveCrop.php

@@ -24,9 +24,15 @@ class RequestLandRemoveCrop extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID,可为0
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     * 物品实例ID,可为0
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandRemoveCrop extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地ID
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *           物品ID,可为0
+     *     @type int|string $item_instance_id
+     *           物品实例ID,可为0
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandRemoveCrop extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID,可为0
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      * 物品ID,可为0
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     * 物品实例ID,可为0
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     * 物品实例ID,可为0
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandSow.php

@@ -24,9 +24,15 @@ class RequestLandSow extends \Google\Protobuf\Internal\Message
     /**
      *种子物品 id
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     *种子实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandSow extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地编号
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *          种子物品 id
+     *     @type int|string $item_instance_id
+     *          种子实例 id
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandSow extends \Google\Protobuf\Internal\Message
     /**
      *种子物品 id
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      *种子物品 id
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     *种子实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     *种子实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandWatering.php

@@ -24,9 +24,15 @@ class RequestLandWatering extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandWatering extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地ID
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *           物品ID
+     *     @type int|string $item_instance_id
+     *           实例 id
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandWatering extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 43 - 9
protophp/Uraus/Kku/Request/RequestLandWeedicide.php

@@ -24,9 +24,15 @@ class RequestLandWeedicide extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      */
-    protected $user_item_id = 0;
+    protected $item_id = 0;
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     */
+    protected $item_instance_id = 0;
 
     /**
      * Constructor.
@@ -36,8 +42,10 @@ class RequestLandWeedicide extends \Google\Protobuf\Internal\Message
      *
      *     @type int|string $land_id
      *           土地ID
-     *     @type int|string $user_item_id
+     *     @type int|string $item_id
      *           物品ID
+     *     @type int|string $item_instance_id
+     *           实例 id
      * }
      */
     public function __construct($data = NULL) {
@@ -74,25 +82,51 @@ class RequestLandWeedicide extends \Google\Protobuf\Internal\Message
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
      * @return int|string
      */
-    public function getUserItemId()
+    public function getItemId()
     {
-        return $this->user_item_id;
+        return $this->item_id;
     }
 
     /**
      * 物品ID
      *
-     * Generated from protobuf field <code>int64 user_item_id = 2;</code>
+     * Generated from protobuf field <code>int64 item_id = 2;</code>
+     * @param int|string $var
+     * @return $this
+     */
+    public function setItemId($var)
+    {
+        GPBUtil::checkInt64($var);
+        $this->item_id = $var;
+
+        return $this;
+    }
+
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
+     * @return int|string
+     */
+    public function getItemInstanceId()
+    {
+        return $this->item_instance_id;
+    }
+
+    /**
+     * 实例 id
+     *
+     * Generated from protobuf field <code>int64 item_instance_id = 3;</code>
      * @param int|string $var
      * @return $this
      */
-    public function setUserItemId($var)
+    public function setItemInstanceId($var)
     {
         GPBUtil::checkInt64($var);
-        $this->user_item_id = $var;
+        $this->item_instance_id = $var;
 
         return $this;
     }

+ 2 - 8
vendor/composer/autoload_classmap.php

@@ -210,7 +210,6 @@ return array(
     'App\\Module\\Dev\\AdminControllers\\JobController' => $baseDir . '/app/Module/Dev/AdminControllers/JobController.php',
     'App\\Module\\Dev\\AdminControllers\\JobJobrunController' => $baseDir . '/app/Module/Dev/AdminControllers/JobJobrunController.php',
     'App\\Module\\Dev\\AdminControllers\\LogsController' => $baseDir . '/app/Module/Dev/AdminControllers/LogsController.php',
-    'App\\Module\\Dev\\AdminControllers\\NoticeController' => $baseDir . '/app/Module/Dev/AdminControllers/NoticeController.php',
     'App\\Module\\Dev\\AdminControllers\\ReadmeController' => $baseDir . '/app/Module/Dev/AdminControllers/ReadmeController.php',
     'App\\Module\\Dev\\AdminControllers\\RequestLogController' => $baseDir . '/app/Module/Dev/AdminControllers/RequestLogController.php',
     'App\\Module\\Dev\\AdminControllers\\RequireLogData' => $baseDir . '/app/Module/Dev/AdminControllers/RequireLogData.php',
@@ -973,18 +972,12 @@ return array(
     'App\\Module\\System\\Models\\ContinuousTimes' => $baseDir . '/app/Module/System/Models/ContinuousTimes.php',
     'App\\Module\\System\\Models\\SysConfig' => $baseDir . '/app/Module/System/Models/SysConfig.php',
     'App\\Module\\System\\Providers\\SystemServiceProvider' => $baseDir . '/app/Module/System/Providers/SystemServiceProvider.php',
-    'App\\Module\\System\\Repositories\\Administrator' => $baseDir . '/app/Module/System/Repositories/Administrator.php',
-    'App\\Module\\System\\Repositories\\AppConfig' => $baseDir . '/app/Module/System/Repositories/AppConfig.php',
-    'App\\Module\\System\\Repositories\\Logs' => $baseDir . '/app/Module/System/Repositories/Logs.php',
-    'App\\Module\\System\\Repositories\\RequireLog' => $baseDir . '/app/Module/System/Repositories/RequireLog.php',
-    'App\\Module\\System\\Repositories\\Route' => $baseDir . '/app/Module/System/Repositories/Route.php',
-    'App\\Module\\System\\Repositories\\Trace' => $baseDir . '/app/Module/System/Repositories/Trace.php',
     'App\\Module\\System\\Repositorys\\Administrator' => $baseDir . '/app/Module/System/Repositorys/Administrator.php',
     'App\\Module\\System\\Repositorys\\AppConfig' => $baseDir . '/app/Module/System/Repositorys/AppConfig.php',
     'App\\Module\\System\\Repositorys\\Logs' => $baseDir . '/app/Module/System/Repositorys/Logs.php',
     'App\\Module\\System\\Repositorys\\RequireLog' => $baseDir . '/app/Module/System/Repositorys/RequireLog.php',
     'App\\Module\\System\\Repositorys\\Route' => $baseDir . '/app/Module/System/Repositorys/Route.php',
-    'App\\Module\\System\\Repositorys\\Trace' => $baseDir . '/app/Module/System/Repositorys/Trace.php',
+    'App\\Module\\System\\Repositorys\\TraceRepository' => $baseDir . '/app/Module/System/Repositorys/TraceRepository.php',
     'App\\Module\\System\\Services\\ConfigService' => $baseDir . '/app/Module/System/Services/ConfigService.php',
     'App\\Module\\System\\Services\\ContinuousTimes' => $baseDir . '/app/Module/System/Services/ContinuousTimes.php',
     'App\\Module\\System\\Services\\OrderNo' => $baseDir . '/app/Module/System/Services/OrderNo.php',
@@ -9639,6 +9632,7 @@ return array(
     'UCore\\DcatAdmin\\Widgets\\Iframe' => $baseDir . '/UCore/DcatAdmin/Widgets/Iframe.php',
     'UCore\\DcatAdmin\\Widgets\\Lazy' => $baseDir . '/UCore/DcatAdmin/Widgets/Lazy.php',
     'UCore\\Dto\\BaseDto' => $baseDir . '/UCore/Dto/BaseDto.php',
+    'UCore\\Dto\\Res' => $baseDir . '/UCore/Dto/Res.php',
     'UCore\\Entity\\BaseEntity' => $baseDir . '/UCore/Entity/BaseEntity.php',
     'UCore\\Enum\\EnumCore' => $baseDir . '/UCore/Enum/EnumCore.php',
     'UCore\\Enum\\EnumExpression' => $baseDir . '/UCore/Enum/EnumExpression.php',

+ 2 - 8
vendor/composer/autoload_static.php

@@ -930,7 +930,6 @@ class ComposerStaticInita2207959542f13e6e79e83f2b0d9a425
         'App\\Module\\Dev\\AdminControllers\\JobController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/JobController.php',
         'App\\Module\\Dev\\AdminControllers\\JobJobrunController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/JobJobrunController.php',
         'App\\Module\\Dev\\AdminControllers\\LogsController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/LogsController.php',
-        'App\\Module\\Dev\\AdminControllers\\NoticeController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/NoticeController.php',
         'App\\Module\\Dev\\AdminControllers\\ReadmeController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/ReadmeController.php',
         'App\\Module\\Dev\\AdminControllers\\RequestLogController' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/RequestLogController.php',
         'App\\Module\\Dev\\AdminControllers\\RequireLogData' => __DIR__ . '/../..' . '/app/Module/Dev/AdminControllers/RequireLogData.php',
@@ -1693,18 +1692,12 @@ class ComposerStaticInita2207959542f13e6e79e83f2b0d9a425
         'App\\Module\\System\\Models\\ContinuousTimes' => __DIR__ . '/../..' . '/app/Module/System/Models/ContinuousTimes.php',
         'App\\Module\\System\\Models\\SysConfig' => __DIR__ . '/../..' . '/app/Module/System/Models/SysConfig.php',
         'App\\Module\\System\\Providers\\SystemServiceProvider' => __DIR__ . '/../..' . '/app/Module/System/Providers/SystemServiceProvider.php',
-        'App\\Module\\System\\Repositories\\Administrator' => __DIR__ . '/../..' . '/app/Module/System/Repositories/Administrator.php',
-        'App\\Module\\System\\Repositories\\AppConfig' => __DIR__ . '/../..' . '/app/Module/System/Repositories/AppConfig.php',
-        'App\\Module\\System\\Repositories\\Logs' => __DIR__ . '/../..' . '/app/Module/System/Repositories/Logs.php',
-        'App\\Module\\System\\Repositories\\RequireLog' => __DIR__ . '/../..' . '/app/Module/System/Repositories/RequireLog.php',
-        'App\\Module\\System\\Repositories\\Route' => __DIR__ . '/../..' . '/app/Module/System/Repositories/Route.php',
-        'App\\Module\\System\\Repositories\\Trace' => __DIR__ . '/../..' . '/app/Module/System/Repositories/Trace.php',
         'App\\Module\\System\\Repositorys\\Administrator' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/Administrator.php',
         'App\\Module\\System\\Repositorys\\AppConfig' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/AppConfig.php',
         'App\\Module\\System\\Repositorys\\Logs' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/Logs.php',
         'App\\Module\\System\\Repositorys\\RequireLog' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/RequireLog.php',
         'App\\Module\\System\\Repositorys\\Route' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/Route.php',
-        'App\\Module\\System\\Repositorys\\Trace' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/Trace.php',
+        'App\\Module\\System\\Repositorys\\TraceRepository' => __DIR__ . '/../..' . '/app/Module/System/Repositorys/TraceRepository.php',
         'App\\Module\\System\\Services\\ConfigService' => __DIR__ . '/../..' . '/app/Module/System/Services/ConfigService.php',
         'App\\Module\\System\\Services\\ContinuousTimes' => __DIR__ . '/../..' . '/app/Module/System/Services/ContinuousTimes.php',
         'App\\Module\\System\\Services\\OrderNo' => __DIR__ . '/../..' . '/app/Module/System/Services/OrderNo.php',
@@ -10359,6 +10352,7 @@ class ComposerStaticInita2207959542f13e6e79e83f2b0d9a425
         'UCore\\DcatAdmin\\Widgets\\Iframe' => __DIR__ . '/../..' . '/UCore/DcatAdmin/Widgets/Iframe.php',
         'UCore\\DcatAdmin\\Widgets\\Lazy' => __DIR__ . '/../..' . '/UCore/DcatAdmin/Widgets/Lazy.php',
         'UCore\\Dto\\BaseDto' => __DIR__ . '/../..' . '/UCore/Dto/BaseDto.php',
+        'UCore\\Dto\\Res' => __DIR__ . '/../..' . '/UCore/Dto/Res.php',
         'UCore\\Entity\\BaseEntity' => __DIR__ . '/../..' . '/UCore/Entity/BaseEntity.php',
         'UCore\\Enum\\EnumCore' => __DIR__ . '/../..' . '/UCore/Enum/EnumCore.php',
         'UCore\\Enum\\EnumExpression' => __DIR__ . '/../..' . '/UCore/Enum/EnumExpression.php',