Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-rpc
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
0
Merge Requests
0
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-rpc
Commits
5be98e14
Commit
5be98e14
authored
Jan 18, 2020
by
王源
🎧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除无用
parent
fa68d075
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
46 deletions
+7
-46
BaseService.php
src/Service/BaseService.php
+7
-4
AuthServiceInterface.php
src/Service/Interfaces/AuthServiceInterface.php
+0
-42
No files found.
src/Service/BaseService.php
View file @
5be98e14
...
...
@@ -24,12 +24,12 @@ class BaseService
* @param $id
* @return Model | array
*/
p
ublic
function
find
(
$id
)
p
rotected
function
find
(
$id
)
{
$model
=
$this
->
model
->
find
(
$id
);
if
(
!
$model
)
{
return
Helper
::
fail
(
''
,
'数据不存在'
,
404
);
}
//
if (!$model) {
//
return Helper::fail('', '数据不存在', 404);
//
}
return
$model
;
}
...
...
@@ -41,6 +41,9 @@ class BaseService
public
function
get
(
$id
)
{
$model
=
$this
->
find
(
$id
);
if
(
!
$model
)
{
return
Helper
::
fail
(
''
,
'数据不存在'
,
404
);
}
return
Helper
::
success
(
$model
);
}
...
...
src/Service/Interfaces/AuthServiceInterface.php
deleted
100644 → 0
View file @
fa68d075
<?php
/**
* Created by PhpStorm.
* User: 王源
* Date: 2020/1/9
* Time: 15:07
*/
namespace
Meibuyu\Micro\Service\Interfaces
;
interface
AuthServiceInterface
{
/**
* 登录
* @param array $params
* @return mixed
*/
public
function
login
(
array
$params
);
/**
* 登出
* @return mixed
*/
public
function
logout
();
/**
* 获取单个数据
* @param $id
* @return mixed
*/
public
function
get
(
$id
);
/**
* 更新数据
* @param $id
* @param array $params
* @return mixed
*/
public
function
update
(
$id
,
$params
);
}
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