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
4e437a94
Commit
4e437a94
authored
Apr 28, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加接口
parent
5f52e95c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
184 additions
and
0 deletions
+184
-0
AppletsConfigSimpleOutputVO.java
...java/com/gic/auth/web/vo/AppletsConfigSimpleOutputVO.java
+62
-0
OwnerMemberCardVO.java
.../src/main/java/com/gic/auth/web/vo/OwnerMemberCardVO.java
+79
-0
ServiceConfigSimpleOutputVO.java
...java/com/gic/auth/web/vo/ServiceConfigSimpleOutputVO.java
+43
-0
No files found.
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/AppletsConfigSimpleOutputVO.java
0 → 100644
View file @
4e437a94
package
com
.
gic
.
auth
.
web
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
/**
* @author zhiwj
* @Description:
* @date 2020-04-28 11:32
*/
public
class
AppletsConfigSimpleOutputVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
579110975175375897L
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
id
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
cardConfigId
;
private
Integer
ownerId
;
private
String
cardCode
;
private
String
cardName
;
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Long
getCardConfigId
()
{
return
cardConfigId
;
}
public
void
setCardConfigId
(
Long
cardConfigId
)
{
this
.
cardConfigId
=
cardConfigId
;
}
public
Integer
getOwnerId
()
{
return
ownerId
;
}
public
void
setOwnerId
(
Integer
ownerId
)
{
this
.
ownerId
=
ownerId
;
}
public
String
getCardCode
()
{
return
cardCode
;
}
public
void
setCardCode
(
String
cardCode
)
{
this
.
cardCode
=
cardCode
;
}
public
String
getCardName
()
{
return
cardName
;
}
public
void
setCardName
(
String
cardName
)
{
this
.
cardName
=
cardName
;
}
}
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/OwnerMemberCardVO.java
0 → 100644
View file @
4e437a94
package
com
.
gic
.
auth
.
web
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
/**
* @author zhiwj
* @Description:
* @date 2020-04-28 11:32
*/
public
class
OwnerMemberCardVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
8599285249416045174L
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
appletConfigId
;
private
String
appletConfigName
;
private
String
img
;
private
String
appId
;
private
Integer
enterpriseId
;
private
Integer
statusFlag
;
private
String
appletUserName
;
public
Long
getAppletConfigId
()
{
return
appletConfigId
;
}
public
void
setAppletConfigId
(
Long
appletConfigId
)
{
this
.
appletConfigId
=
appletConfigId
;
}
public
String
getAppletConfigName
()
{
return
appletConfigName
;
}
public
void
setAppletConfigName
(
String
appletConfigName
)
{
this
.
appletConfigName
=
appletConfigName
;
}
public
String
getImg
()
{
return
img
;
}
public
void
setImg
(
String
img
)
{
this
.
img
=
img
;
}
public
String
getAppId
()
{
return
appId
;
}
public
void
setAppId
(
String
appId
)
{
this
.
appId
=
appId
;
}
public
Integer
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseId
(
Integer
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
Integer
getStatusFlag
()
{
return
statusFlag
;
}
public
void
setStatusFlag
(
Integer
statusFlag
)
{
this
.
statusFlag
=
statusFlag
;
}
public
String
getAppletUserName
()
{
return
appletUserName
;
}
public
void
setAppletUserName
(
String
appletUserName
)
{
this
.
appletUserName
=
appletUserName
;
}
}
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/ServiceConfigSimpleOutputVO.java
0 → 100644
View file @
4e437a94
package
com
.
gic
.
auth
.
web
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
/**
* @author zhiwj
* @Description:
* @date 2020-04-28 11:33
*/
public
class
ServiceConfigSimpleOutputVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
5886163288126799201L
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
serviceConfigId
;
private
String
serviceConfigName
;
private
String
appId
;
public
Long
getServiceConfigId
()
{
return
serviceConfigId
;
}
public
void
setServiceConfigId
(
Long
serviceConfigId
)
{
this
.
serviceConfigId
=
serviceConfigId
;
}
public
String
getServiceConfigName
()
{
return
serviceConfigName
;
}
public
void
setServiceConfigName
(
String
serviceConfigName
)
{
this
.
serviceConfigName
=
serviceConfigName
;
}
public
String
getAppId
()
{
return
appId
;
}
public
void
setAppId
(
String
appId
)
{
this
.
appId
=
appId
;
}
}
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