Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-micro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
without authentication
meibuyu-micro
Commits
33a70faf
Commit
33a70faf
authored
Jan 13, 2022
by
王源
🎧
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.0' into 2.0
parents
94d1b4d4
366782ba
Changes
30
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
119 additions
and
5 deletions
+119
-5
BaseService.php
src/Service/BaseService.php
+3
-0
AppServiceInterface.php
src/Service/Interfaces/AppServiceInterface.php
+4
-0
BaseInfoServiceInterface.php
src/Service/Interfaces/BaseInfoServiceInterface.php
+4
-0
DatacenterServiceInterface.php
src/Service/Interfaces/DatacenterServiceInterface.php
+4
-0
DingDepartmentServiceInterface.php
...ce/Interfaces/DingTalk/DingDepartmentServiceInterface.php
+4
-0
DingMessageServiceInterface.php
...rvice/Interfaces/DingTalk/DingMessageServiceInterface.php
+4
-0
DingUserServiceInterface.php
src/Service/Interfaces/DingTalk/DingUserServiceInterface.php
+4
-0
DispatchPlanServiceInterface.php
src/Service/Interfaces/DispatchPlanServiceInterface.php
+4
-0
FileServiceInterface.php
src/Service/Interfaces/File/FileServiceInterface.php
+4
-2
GetConnectModuleServiceInterface.php
...vice/Interfaces/Flow/GetConnectModuleServiceInterface.php
+4
-1
ProcessFormServiceInterface.php
src/Service/Interfaces/Flow/ProcessFormServiceInterface.php
+4
-1
LogisticsServiceInterface.php
...ervice/Interfaces/Logistics/LogisticsServiceInterface.php
+4
-1
OperationServiceInterface.php
...ervice/Interfaces/Operation/OperationServiceInterface.php
+4
-0
ShopifyOrderServiceInterface.php
...Service/Interfaces/Order/ShopifyOrderServiceInterface.php
+4
-0
StockUpServiceInterface.php
src/Service/Interfaces/Order/StockUpServiceInterface.php
+4
-0
SubOrderServiceInterface.php
src/Service/Interfaces/Order/SubOrderServiceInterface.php
+4
-0
MaterialServiceInterface.php
src/Service/Interfaces/Product/MaterialServiceInterface.php
+4
-0
PlatformProductChildServiceInterface.php
...terfaces/Product/PlatformProductChildServiceInterface.php
+4
-0
PlatformProductServiceInterface.php
...ce/Interfaces/Product/PlatformProductServiceInterface.php
+4
-0
ProductChildServiceInterface.php
...rvice/Interfaces/Product/ProductChildServiceInterface.php
+4
-0
ProductServiceInterface.php
src/Service/Interfaces/Product/ProductServiceInterface.php
+4
-0
ShopifyProductServiceInterface.php
...ice/Interfaces/Product/ShopifyProductServiceInterface.php
+4
-0
ShopifyServiceInterface.php
src/Service/Interfaces/Product/ShopifyServiceInterface.php
+4
-0
ProductChildServiceInterface.php
src/Service/Interfaces/ProductChildServiceInterface.php
+4
-0
ProductionServiceInterface.php
...vice/Interfaces/Production/ProductionServiceInterface.php
+4
-0
PurchaseDoneServiceInterface.php
...vice/Interfaces/Purchase/PurchaseDoneServiceInterface.php
+4
-0
PurchaseTaskServiceInterface.php
...vice/Interfaces/Purchase/PurchaseTaskServiceInterface.php
+4
-0
StoreMaterialServiceInterface.php
...ervice/Interfaces/Store/StoreMaterialServiceInterface.php
+4
-0
StoreServiceInterface.php
src/Service/Interfaces/StoreServiceInterface.php
+4
-0
AccessServiceInterface.php
src/Service/Interfaces/User/AccessServiceInterface.php
+4
-0
No files found.
src/Service/BaseService.php
View file @
33a70faf
...
@@ -12,6 +12,9 @@ use Exception;
...
@@ -12,6 +12,9 @@ use Exception;
use
Hyperf\DbConnection\Model\Model
;
use
Hyperf\DbConnection\Model\Model
;
use
Meibuyu\Micro\Helper
;
use
Meibuyu\Micro\Helper
;
/**
* @deprecated 此类废弃,在之后的版本会被删除
*/
class
BaseService
class
BaseService
{
{
/**
/**
...
...
src/Service/Interfaces/AppServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\App\AppServiceInterface
*/
interface
AppServiceInterface
interface
AppServiceInterface
{
{
...
...
src/Service/Interfaces/BaseInfoServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\User\BaseInfoServiceInterface
*/
interface
BaseInfoServiceInterface
interface
BaseInfoServiceInterface
{
{
...
...
src/Service/Interfaces/DatacenterServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Datacenter\DatacenterServiceInterface
*/
interface
DatacenterServiceInterface
interface
DatacenterServiceInterface
{
{
...
...
src/Service/Interfaces/DingTalk/DingDepartmentServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\DingTalk
;
namespace
Meibuyu\Micro\Service\Interfaces\DingTalk
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Message\DingTalk\DingDepartmentServiceInterface
*/
interface
DingDepartmentServiceInterface
interface
DingDepartmentServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/DingTalk/DingMessageServiceInterface.php
View file @
33a70faf
...
@@ -10,6 +10,10 @@ namespace Meibuyu\Micro\Service\Interfaces\DingTalk;
...
@@ -10,6 +10,10 @@ namespace Meibuyu\Micro\Service\Interfaces\DingTalk;
use
phpDocumentor\Reflection\Types\Mixed_
;
use
phpDocumentor\Reflection\Types\Mixed_
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Message\DingTalk\DingMessageServiceInterface
*/
interface
DingMessageServiceInterface
interface
DingMessageServiceInterface
{
{
...
...
src/Service/Interfaces/DingTalk/DingUserServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\DingTalk
;
namespace
Meibuyu\Micro\Service\Interfaces\DingTalk
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Message\DingTalk\DingUserServiceInterface
*/
interface
DingUserServiceInterface
interface
DingUserServiceInterface
{
{
/** 通过用户id获取单个用户信息
/** 通过用户id获取单个用户信息
...
...
src/Service/Interfaces/DispatchPlanServiceInterface.php
View file @
33a70faf
...
@@ -9,6 +9,10 @@
...
@@ -9,6 +9,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Store\DispatchPlanServiceInterface
*/
interface
DispatchPlanServiceInterface
interface
DispatchPlanServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/File/FileServiceInterface.php
View file @
33a70faf
<?php
<?php
namespace
Meibuyu\Micro\Service\Interfaces\File
;
namespace
Meibuyu\Micro\Service\Interfaces\File
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\File\FileServiceInterface
*/
interface
FileServiceInterface
interface
FileServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Flow/GetConnectModuleServiceInterface.php
View file @
33a70faf
...
@@ -3,7 +3,10 @@
...
@@ -3,7 +3,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Flow
;
namespace
Meibuyu\Micro\Service\Interfaces\Flow
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Flow\GetConnectModuleServiceInterface
*/
interface
GetConnectModuleServiceInterface
interface
GetConnectModuleServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Flow/ProcessFormServiceInterface.php
View file @
33a70faf
...
@@ -3,7 +3,10 @@
...
@@ -3,7 +3,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Flow
;
namespace
Meibuyu\Micro\Service\Interfaces\Flow
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Flow\ProcessFormServiceInterface
*/
interface
ProcessFormServiceInterface
interface
ProcessFormServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Logistics/LogisticsServiceInterface.php
View file @
33a70faf
...
@@ -3,7 +3,10 @@
...
@@ -3,7 +3,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Logistics
;
namespace
Meibuyu\Micro\Service\Interfaces\Logistics
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Logistics\LogisticsServiceInterface
*/
interface
LogisticsServiceInterface
interface
LogisticsServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Operation/OperationServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Operation
;
namespace
Meibuyu\Micro\Service\Interfaces\Operation
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Operation\OperationServiceInterface
*/
interface
OperationServiceInterface
interface
OperationServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Order/ShopifyOrderServiceInterface.php
View file @
33a70faf
...
@@ -10,6 +10,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Order;
...
@@ -10,6 +10,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Order;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Order\ShopifyOrderServiceInterface
*/
interface
ShopifyOrderServiceInterface
interface
ShopifyOrderServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Order/StockUpServiceInterface.php
View file @
33a70faf
...
@@ -2,6 +2,10 @@
...
@@ -2,6 +2,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Order
;
namespace
Meibuyu\Micro\Service\Interfaces\Order
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Order\StockUpServiceInterface
*/
interface
StockUpServiceInterface
interface
StockUpServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Order/SubOrderServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Order
;
namespace
Meibuyu\Micro\Service\Interfaces\Order
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Order\SubOrderServiceInterface
*/
interface
SubOrderServiceInterface
interface
SubOrderServiceInterface
{
{
...
...
src/Service/Interfaces/Product/MaterialServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\MaterialServiceInterface
*/
interface
MaterialServiceInterface
interface
MaterialServiceInterface
{
{
...
...
src/Service/Interfaces/Product/PlatformProductChildServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\PlatformProductChildServiceInterface
*/
interface
PlatformProductChildServiceInterface
interface
PlatformProductChildServiceInterface
{
{
...
...
src/Service/Interfaces/Product/PlatformProductServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\PlatformProductServiceInterface
*/
interface
PlatformProductServiceInterface
interface
PlatformProductServiceInterface
{
{
...
...
src/Service/Interfaces/Product/ProductChildServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\ProductChildServiceInterface
*/
interface
ProductChildServiceInterface
interface
ProductChildServiceInterface
{
{
...
...
src/Service/Interfaces/Product/ProductServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\ProductServiceInterface
*/
interface
ProductServiceInterface
interface
ProductServiceInterface
{
{
...
...
src/Service/Interfaces/Product/ShopifyProductServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
namespace
Meibuyu\Micro\Service\Interfaces\Product
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\ShopifyProductServiceInterface
*/
interface
ShopifyProductServiceInterface
interface
ShopifyProductServiceInterface
{
{
...
...
src/Service/Interfaces/Product/ShopifyServiceInterface.php
View file @
33a70faf
...
@@ -11,6 +11,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Product;
...
@@ -11,6 +11,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Product;
use
Exception
;
use
Exception
;
use
Meibuyu\Micro\Exceptions\RpcException
;
use
Meibuyu\Micro\Exceptions\RpcException
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\ShopifyServiceInterface
*/
interface
ShopifyServiceInterface
interface
ShopifyServiceInterface
{
{
...
...
src/Service/Interfaces/ProductChildServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Product\ProductChildServiceInterface
*/
interface
ProductChildServiceInterface
interface
ProductChildServiceInterface
{
{
...
...
src/Service/Interfaces/Production/ProductionServiceInterface.php
View file @
33a70faf
...
@@ -4,6 +4,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Production;
...
@@ -4,6 +4,10 @@ namespace Meibuyu\Micro\Service\Interfaces\Production;
use
Meibuyu\Micro\Exceptions\HttpResponseException
;
use
Meibuyu\Micro\Exceptions\HttpResponseException
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Production\ProductionServiceInterface
*/
interface
ProductionServiceInterface
interface
ProductionServiceInterface
{
{
...
...
src/Service/Interfaces/Purchase/PurchaseDoneServiceInterface.php
View file @
33a70faf
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Purchase
;
namespace
Meibuyu\Micro\Service\Interfaces\Purchase
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Purchase\PurchaseDoneServiceInterface
*/
interface
PurchaseDoneServiceInterface
interface
PurchaseDoneServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/Purchase/PurchaseTaskServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Purchase
;
namespace
Meibuyu\Micro\Service\Interfaces\Purchase
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Purchase\PurchaseTaskServiceInterface
*/
interface
PurchaseTaskServiceInterface
interface
PurchaseTaskServiceInterface
{
{
...
...
src/Service/Interfaces/Store/StoreMaterialServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\Store
;
namespace
Meibuyu\Micro\Service\Interfaces\Store
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Store\StoreMaterialServiceInterface
*/
interface
StoreMaterialServiceInterface
interface
StoreMaterialServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/StoreServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces
;
namespace
Meibuyu\Micro\Service\Interfaces
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Store\StoreServiceInterface
*/
interface
StoreServiceInterface
interface
StoreServiceInterface
{
{
/**
/**
...
...
src/Service/Interfaces/User/AccessServiceInterface.php
View file @
33a70faf
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
namespace
Meibuyu\Micro\Service\Interfaces\User
;
namespace
Meibuyu\Micro\Service\Interfaces\User
;
/**
* @deprecated 此接口废弃,在之后的版本会被删除
* 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\User\AccessServiceInterface
*/
interface
AccessServiceInterface
interface
AccessServiceInterface
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment