From 268aedbb6e7e35bb417cbc3997cffaae827c6ed1 Mon Sep 17 00:00:00 2001 From: wong <106998207@qq.com> Date: Thu, 23 Oct 2025 09:51:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=BB=9F=E4=B8=80=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php | 2 +- Server/extend/AccountWeight/UnitWeight/AgeWeight.php | 2 +- Server/extend/AccountWeight/UnitWeight/RealNameWeight.php | 2 +- Server/extend/AccountWeight/UnitWeight/RestrictWeight.php | 2 +- Server/extend/AccountWeight/WechatAccountWeightAssessment.php | 4 ++-- .../extend/AccountWeight/WechatFriendAddLimitAssessment.php | 4 ++-- Server/extend/library/ClassTable.php | 2 +- Server/extend/library/Interfaces/CallMap.php | 2 +- .../library/Interfaces/WechatAccountWeightAssessment.php | 2 +- .../library/Interfaces/WechatAccountWeightResultSet.php | 2 +- .../library/Interfaces/WechatFriendAddLimitAssessment.php | 4 ++-- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php b/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php index 5763ea4f..48963982 100644 --- a/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php +++ b/Server/extend/AccountWeight/UnitWeight/ActivityWeigth.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatCustomer as WechatCustomerModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class ActivityWeigth implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/AgeWeight.php b/Server/extend/AccountWeight/UnitWeight/AgeWeight.php index 02a2833e..eb40c836 100644 --- a/Server/extend/AccountWeight/UnitWeight/AgeWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/AgeWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatCustomer as WechatCustomerModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class AgeWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php b/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php index 417ebf9f..e2dec3da 100644 --- a/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/RealNameWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class RealNameWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php b/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php index 59e8df53..df2eb7f2 100644 --- a/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php +++ b/Server/extend/AccountWeight/UnitWeight/RestrictWeight.php @@ -3,7 +3,7 @@ namespace AccountWeight\UnitWeight; use app\common\model\WechatRestricts as WechatRestrictsModel; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; class RestrictWeight implements WechatAccountWeightResultSetInterface { diff --git a/Server/extend/AccountWeight/WechatAccountWeightAssessment.php b/Server/extend/AccountWeight/WechatAccountWeightAssessment.php index b4528f2a..0d53b1ff 100644 --- a/Server/extend/AccountWeight/WechatAccountWeightAssessment.php +++ b/Server/extend/AccountWeight/WechatAccountWeightAssessment.php @@ -4,8 +4,8 @@ namespace AccountWeight; use AccountWeight\Exceptions\WechatAccountWeightAssessmentException as WeightAssessmentException; use library\ClassTable; -use library\interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; -use library\interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; +use library\Interfaces\WechatAccountWeightResultSet as WechatAccountWeightResultSetInterface; +use library\Interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; use AccountWeight\UnitWeight; use app\common\service\ClassTableService; diff --git a/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php b/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php index 02fe014b..49bd8876 100644 --- a/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php +++ b/Server/extend/AccountWeight/WechatFriendAddLimitAssessment.php @@ -2,8 +2,8 @@ namespace AccountWeight; -use library\interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; -use library\interfaces\WechatFriendAddLimitAssessment as WechatFriendAddLimitAssessmentInterface; +use library\Interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface; +use library\Interfaces\WechatFriendAddLimitAssessment as WechatFriendAddLimitAssessmentInterface; class WechatFriendAddLimitAssessment implements WechatFriendAddLimitAssessmentInterface { diff --git a/Server/extend/library/ClassTable.php b/Server/extend/library/ClassTable.php index 785556a4..939eeb4a 100644 --- a/Server/extend/library/ClassTable.php +++ b/Server/extend/library/ClassTable.php @@ -2,7 +2,7 @@ namespace library; -use library\interfaces\CallMap as CallMapInterface; +use library\Interfaces\CallMap as CallMapInterface; class ClassTable implements CallMapInterface { diff --git a/Server/extend/library/Interfaces/CallMap.php b/Server/extend/library/Interfaces/CallMap.php index 71d34bad..f58d5bc1 100644 --- a/Server/extend/library/Interfaces/CallMap.php +++ b/Server/extend/library/Interfaces/CallMap.php @@ -1,6 +1,6 @@