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
f914557b
Commit
f914557b
authored
Nov 12, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
运营实施管理员
parent
6c627090
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
154 additions
and
0 deletions
+154
-0
OperationUserDTO.java
...-api/src/main/java/com/gic/auth/dto/OperationUserDTO.java
+119
-0
OperationUserApiService.java
...in/java/com/gic/auth/service/OperationUserApiService.java
+35
-0
No files found.
gic-platform-auth-api/src/main/java/com/gic/auth/dto/OperationUserDTO.java
0 → 100644
View file @
f914557b
package
com
.
gic
.
auth
.
dto
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* 运营实施人员
* @ClassName: OperationUserDTO
* @Description:
* @author guojuxing
* @date 2019/11/12 3:02 PM
*/
public
class
OperationUserDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
3358114509412598332L
;
/**
* 用户id
*/
private
Integer
operationUserId
;
/**
* 用户名
*/
private
String
operationUserName
;
/**
* 手机号码
*/
private
String
phoneNumber
;
/**
* 状态,1有效,0无效
*/
private
Integer
status
;
/**
*
*/
private
Date
createTime
;
/**
*
*/
private
Date
updateTime
;
/**
*
*/
private
Integer
enterpriseId
;
/**
* 国际区号,如中国 86
*/
private
String
phoneAreaCode
;
public
Integer
getOperationUserId
()
{
return
operationUserId
;
}
public
void
setOperationUserId
(
Integer
operationUserId
)
{
this
.
operationUserId
=
operationUserId
;
}
public
String
getOperationUserName
()
{
return
operationUserName
;
}
public
void
setOperationUserName
(
String
operationUserName
)
{
this
.
operationUserName
=
operationUserName
;
}
public
String
getPhoneNumber
()
{
return
phoneNumber
;
}
public
void
setPhoneNumber
(
String
phoneNumber
)
{
this
.
phoneNumber
=
phoneNumber
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Date
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
Integer
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseId
(
Integer
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getPhoneAreaCode
()
{
return
phoneAreaCode
;
}
public
void
setPhoneAreaCode
(
String
phoneAreaCode
)
{
this
.
phoneAreaCode
=
phoneAreaCode
;
}
}
gic-platform-auth-api/src/main/java/com/gic/auth/service/OperationUserApiService.java
0 → 100644
View file @
f914557b
package
com
.
gic
.
auth
.
service
;
import
com.gic.api.base.commons.ServiceResponse
;
import
com.gic.auth.dto.OperationUserDTO
;
/**
* 运营实施管理员
* @ClassName: OperationUserApiService
* @Description:
* @author guojuxing
* @date 2019/11/12 3:03 PM
*/
public
interface
OperationUserApiService
{
/**
* 手机号码查询运营
* @Title: getByPhone
* @Description:
* @author guojuxing
* @param phone
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.auth.dto.OperationUserDTO>
*/
ServiceResponse
<
OperationUserDTO
>
getByPhone
(
String
phone
,
Integer
enterpriseId
);
/**
* 新增
* @Title: save
* @Description:
* @author guojuxing
* @param dto
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
*/
ServiceResponse
<
Void
>
save
(
OperationUserDTO
dto
);
}
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