Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
base_platform_enterprise
gic-platform-auth
Commits
b1f0ac1b
Commit
b1f0ac1b
authored
Dec 17, 2019
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加查询短信签名的接口
parent
73ebdce9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
SmsSignResourceDTO.java
...pi/src/main/java/com/gic/auth/dto/SmsSignResourceDTO.java
+12
-3
ResourceApiServiceImpl.java
...m/gic/auth/service/outer/impl/ResourceApiServiceImpl.java
+1
-1
No files found.
gic-platform-auth-api/src/main/java/com/gic/auth/dto/SmsSignResourceDTO.java
View file @
b1f0ac1b
...
...
@@ -11,19 +11,28 @@ import java.util.List;
*/
public
class
SmsSignResourceDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
6009818220117316815L
;
private
String
ids
;
//
private
List
<
Long
>
id
s
;
private
List
<
Long
>
id
List
;
// 1:全部 2:部分
private
Integer
type
;
public
List
<
Long
>
getIds
()
{
public
String
getIds
()
{
return
ids
;
}
public
void
setIds
(
List
<
Long
>
ids
)
{
public
void
setIds
(
String
ids
)
{
this
.
ids
=
ids
;
}
public
List
<
Long
>
getIdList
()
{
return
idList
;
}
public
void
setIdList
(
List
<
Long
>
idList
)
{
this
.
idList
=
idList
;
}
public
Integer
getType
()
{
return
type
;
}
...
...
gic-platform-auth-service/src/main/java/com/gic/auth/service/outer/impl/ResourceApiServiceImpl.java
View file @
b1f0ac1b
...
...
@@ -172,7 +172,7 @@ public class ResourceApiServiceImpl implements ResourceApiService {
}
}
}
result
.
setId
s
(
resultIds
);
result
.
setId
List
(
resultIds
);
return
EnterpriseServiceResponse
.
success
(
result
);
}
}
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