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
c52d0619
Commit
c52d0619
authored
Nov 04, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量分组接口修复:sql语法错误
parent
c8f955d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
6 deletions
+45
-6
CollaboratorDTO.java
...h-api/src/main/java/com/gic/auth/dto/CollaboratorDTO.java
+15
-1
CollaboratorListDTO.java
...i/src/main/java/com/gic/auth/dto/CollaboratorListDTO.java
+20
-5
CollaboratorListQO.java
...api/src/main/java/com/gic/auth/qo/CollaboratorListQO.java
+10
-0
No files found.
gic-platform-auth-api/src/main/java/com/gic/auth/dto/CollaboratorDTO.java
View file @
c52d0619
...
...
@@ -36,10 +36,16 @@ public class CollaboratorDTO implements Serializable{
/**
* 商户
*/
@NotNull
(
message
=
"商户ID不能为空"
,
groups
=
{
SaveValid
.
class
})
@NotNull
(
message
=
"
主体
商户ID不能为空"
,
groups
=
{
SaveValid
.
class
})
private
Integer
enterpriseId
;
/**
* 协作商户
*/
@NotNull
(
message
=
"协作商户ID不能为空"
,
groups
=
{
SaveValid
.
class
})
private
Integer
collaborationEnterpriseId
;
/**
* 手机号码
*/
@NotBlank
(
message
=
"手机号码不能为空"
,
groups
=
{
SaveValid
.
class
})
...
...
@@ -170,4 +176,12 @@ public class CollaboratorDTO implements Serializable{
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
Integer
getCollaborationEnterpriseId
()
{
return
collaborationEnterpriseId
;
}
public
void
setCollaborationEnterpriseId
(
Integer
collaborationEnterpriseId
)
{
this
.
collaborationEnterpriseId
=
collaborationEnterpriseId
;
}
}
gic-platform-auth-api/src/main/java/com/gic/auth/dto/CollaboratorListDTO.java
View file @
c52d0619
...
...
@@ -28,7 +28,12 @@ public class CollaboratorListDTO implements Serializable{
*/
private
Integer
enterpriseId
;
private
String
enterpriseName
;
/**
* 协作商户
*/
private
Integer
collaborationEnterpriseId
;
private
String
collaborationEnterpriseName
;
/**
* 手机号码
...
...
@@ -83,12 +88,20 @@ public class CollaboratorListDTO implements Serializable{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getEnterpriseName
()
{
return
enterpriseName
;
public
Integer
getCollaborationEnterpriseId
()
{
return
collaborationEnterpriseId
;
}
public
void
setCollaborationEnterpriseId
(
Integer
collaborationEnterpriseId
)
{
this
.
collaborationEnterpriseId
=
collaborationEnterpriseId
;
}
public
void
setEnterpriseName
(
String
enterpriseName
)
{
this
.
enterpriseName
=
enterpriseName
;
public
String
getCollaborationEnterpriseName
()
{
return
collaborationEnterpriseName
;
}
public
void
setCollaborationEnterpriseName
(
String
collaborationEnterpriseName
)
{
this
.
collaborationEnterpriseName
=
collaborationEnterpriseName
;
}
public
String
getPhone
()
{
...
...
@@ -138,4 +151,6 @@ public class CollaboratorListDTO implements Serializable{
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
}
gic-platform-auth-api/src/main/java/com/gic/auth/qo/CollaboratorListQO.java
View file @
c52d0619
...
...
@@ -22,6 +22,8 @@ public class CollaboratorListQO extends PageQO{
private
Integer
status
;
private
Integer
enterpriseId
;
public
String
getSearch
()
{
return
search
;
}
...
...
@@ -45,4 +47,12 @@ public class CollaboratorListQO extends PageQO{
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
public
Integer
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseId
(
Integer
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
}
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