Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
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
head_group
xyqb-user2
Commits
e0c6fe5e
Commit
e0c6fe5e
authored
Dec 29, 2021
by
李健华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
注释废弃接口
parent
738586df
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
32 deletions
+24
-32
AppController.java
...antgroup/xyqb/controller/internal/user/AppController.java
+1
-1
InnerController.java
...tgroup/xyqb/controller/internal/user/InnerController.java
+16
-16
UserCenterController.java
...controller/internal/user/center/UserCenterController.java
+4
-4
ContactController.java
...qb/controller/middleoffice/contact/ContactController.java
+2
-8
UserDetailController.java
...troller/middleoffice/userdetail/UserDetailController.java
+1
-3
No files found.
src/main/java/cn/quantgroup/xyqb/controller/internal/user/AppController.java
View file @
e0c6fe5e
...
@@ -61,7 +61,7 @@ public class AppController implements IBaseController {
...
@@ -61,7 +61,7 @@ public class AppController implements IBaseController {
@IpValidator
@IpValidator
@AuthorizationPoint
@AuthorizationPoint
@RequestMapping
(
"/auth/v1/login"
)
//
@RequestMapping("/auth/v1/login")
public
JsonResult
authLoginV1
(
public
JsonResult
authLoginV1
(
String
idNo
String
idNo
,
String
name
,
String
name
...
...
src/main/java/cn/quantgroup/xyqb/controller/internal/user/InnerController.java
View file @
e0c6fe5e
...
@@ -232,7 +232,7 @@ public class InnerController implements IBaseController {
...
@@ -232,7 +232,7 @@ public class InnerController implements IBaseController {
/**
/**
* @yapi http://yapi.quantgroups.com/project/17/interface/api/229
* @yapi http://yapi.quantgroups.com/project/17/interface/api/229
*/
*/
@RequestMapping
(
"/userInfo/search/uuid"
)
//
@RequestMapping("/userInfo/search/uuid")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"根据UUID查询用户详细信息"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"根据UUID查询用户详细信息"
)
public
JsonResult
findUserInfoByUuid
(
@RequestParam
(
value
=
"uuid"
)
String
uuid
)
{
public
JsonResult
findUserInfoByUuid
(
@RequestParam
(
value
=
"uuid"
)
String
uuid
)
{
log
.
info
(
"需要查询的用户uuidid, uuid:"
+
uuid
);
log
.
info
(
"需要查询的用户uuidid, uuid:"
+
uuid
);
...
@@ -255,7 +255,7 @@ public class InnerController implements IBaseController {
...
@@ -255,7 +255,7 @@ public class InnerController implements IBaseController {
/**
/**
* @yapi http://yapi.quantgroups.com/project/17/interface/api/227
* @yapi http://yapi.quantgroups.com/project/17/interface/api/227
*/
*/
@RequestMapping
(
"/userInfo/search/phone"
)
//
@RequestMapping("/userInfo/search/phone")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"根据手机号查询用户详细信息"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"根据手机号查询用户详细信息"
)
public
JsonResult
findUserInfoByPhone
(
@RequestParam
(
value
=
"phone"
)
String
phone
)
{
public
JsonResult
findUserInfoByPhone
(
@RequestParam
(
value
=
"phone"
)
String
phone
)
{
log
.
info
(
"需要查询的用户phone, phone:"
+
phone
);
log
.
info
(
"需要查询的用户phone, phone:"
+
phone
);
...
@@ -343,7 +343,7 @@ public class InnerController implements IBaseController {
...
@@ -343,7 +343,7 @@ public class InnerController implements IBaseController {
* 适用于:创建 或 修改
* 适用于:创建 或 修改
* @yapi http://yapi.quantgroups.com/project/17/interface/api/285
* @yapi http://yapi.quantgroups.com/project/17/interface/api/285
*/
*/
@RequestMapping
(
"/user_detail/save"
)
//
@RequestMapping("/user_detail/save")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"填写用户详情"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"填写用户详情"
)
public
JsonResult
saveUserDetail
(
@Min
(
value
=
1
,
message
=
"用户id为空"
)
@RequestParam
Long
userId
,
public
JsonResult
saveUserDetail
(
@Min
(
value
=
1
,
message
=
"用户id为空"
)
@RequestParam
Long
userId
,
String
phoneNo
,
String
phoneNo
,
...
@@ -415,7 +415,7 @@ public class InnerController implements IBaseController {
...
@@ -415,7 +415,7 @@ public class InnerController implements IBaseController {
* 根据用户id查询用户的详细信息
* 根据用户id查询用户的详细信息
* @yapi http://yapi.quantgroups.com/project/17/interface/api/237
* @yapi http://yapi.quantgroups.com/project/17/interface/api/237
*/
*/
@RequestMapping
(
"/user_detail/search/userId"
)
//
@RequestMapping("/user_detail/search/userId")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户详情"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户详情"
)
public
JsonResult
findUserDetailByUserId
(
Long
userId
,
Integer
tenantId
)
{
public
JsonResult
findUserDetailByUserId
(
Long
userId
,
Integer
tenantId
)
{
UserDetail
userDetail
=
null
;
UserDetail
userDetail
=
null
;
...
@@ -460,7 +460,7 @@ public class InnerController implements IBaseController {
...
@@ -460,7 +460,7 @@ public class InnerController implements IBaseController {
/**
/**
* @yapi http://yapi.quantgroups.com/project/17/interface/api/235
* @yapi http://yapi.quantgroups.com/project/17/interface/api/235
*/
*/
@RequestMapping
(
"/user_detail/search/phone"
)
//
@RequestMapping("/user_detail/search/phone")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户详情"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户详情"
)
public
JsonResult
findUserDetailByPhone
(
String
phoneNo
,
Integer
tenantId
)
{
public
JsonResult
findUserDetailByPhone
(
String
phoneNo
,
Integer
tenantId
)
{
UserDetail
userDetail
=
null
;
UserDetail
userDetail
=
null
;
...
@@ -505,7 +505,7 @@ public class InnerController implements IBaseController {
...
@@ -505,7 +505,7 @@ public class InnerController implements IBaseController {
* @param uuid
* @param uuid
* @return
* @return
*/
*/
@RequestMapping
(
"/user_full_info/search/uuid"
)
//
@RequestMapping("/user_full_info/search/uuid")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户全部信息(user+detail)"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户全部信息(user+detail)"
)
public
JsonResult
findUserFullInfoByUUuid
(
String
uuid
)
{
public
JsonResult
findUserFullInfoByUUuid
(
String
uuid
)
{
if
(
StringUtils
.
isBlank
(
uuid
))
{
if
(
StringUtils
.
isBlank
(
uuid
))
{
...
@@ -553,7 +553,7 @@ public class InnerController implements IBaseController {
...
@@ -553,7 +553,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
null
,
null
);
return
JsonResult
.
buildSuccessResult
(
null
,
null
);
}
}
@RequestMapping
(
"/contact/search/user_id"
)
//
@RequestMapping("/contact/search/user_id")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户联系人"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户联系人"
)
public
JsonResult
findContactsByUserId
(
Long
userId
)
{
public
JsonResult
findContactsByUserId
(
Long
userId
)
{
if
(
null
==
userId
)
{
if
(
null
==
userId
)
{
...
@@ -566,7 +566,7 @@ public class InnerController implements IBaseController {
...
@@ -566,7 +566,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
null
,
ContactRet
.
contacts2ContactRets
(
contacts
));
return
JsonResult
.
buildSuccessResult
(
null
,
ContactRet
.
contacts2ContactRets
(
contacts
));
}
}
@RequestMapping
(
"/contact/save/contacts"
)
//
@RequestMapping("/contact/save/contacts")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"保存联系人"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"保存联系人"
)
public
JsonResult
save2Contact
(
Long
userId
,
@RequestParam
(
value
=
"contacts"
)
String
contactsStr
)
{
public
JsonResult
save2Contact
(
Long
userId
,
@RequestParam
(
value
=
"contacts"
)
String
contactsStr
)
{
if
(
Objects
.
isNull
(
userId
)
||
StringUtils
.
isBlank
(
contactsStr
))
{
if
(
Objects
.
isNull
(
userId
)
||
StringUtils
.
isBlank
(
contactsStr
))
{
...
@@ -623,7 +623,7 @@ public class InnerController implements IBaseController {
...
@@ -623,7 +623,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
"修改联系人成功"
,
contact
);
return
JsonResult
.
buildSuccessResult
(
"修改联系人成功"
,
contact
);
}
}
@RequestMapping
(
"/address/search/user_id"
)
//
@RequestMapping("/address/search/user_id")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户地址"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户地址"
)
public
JsonResult
findAddressByUserId
(
Long
userId
)
{
public
JsonResult
findAddressByUserId
(
Long
userId
)
{
if
(
userId
==
null
)
{
if
(
userId
==
null
)
{
...
@@ -636,7 +636,7 @@ public class InnerController implements IBaseController {
...
@@ -636,7 +636,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
null
,
AddressRet
.
address2AddressRet
(
address
));
return
JsonResult
.
buildSuccessResult
(
null
,
AddressRet
.
address2AddressRet
(
address
));
}
}
@RequestMapping
(
"/address/save"
)
//
@RequestMapping("/address/save")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"保存用户地址"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"保存用户地址"
)
public
JsonResult
saveAddress
(
public
JsonResult
saveAddress
(
Long
userId
,
Long
provinceCode
,
Long
cityCode
,
String
city
,
Long
userId
,
Long
provinceCode
,
Long
cityCode
,
String
city
,
...
@@ -663,7 +663,7 @@ public class InnerController implements IBaseController {
...
@@ -663,7 +663,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
null
,
AddressRet
.
address2AddressRet
(
addressObj
));
return
JsonResult
.
buildSuccessResult
(
null
,
AddressRet
.
address2AddressRet
(
addressObj
));
}
}
@RequestMapping
(
"/user_ext_info/update"
)
//
@RequestMapping("/user_ext_info/update")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"更新用户扩展信息"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"更新用户扩展信息"
)
public
JsonResult
updateMarryStatus
(
public
JsonResult
updateMarryStatus
(
Long
userId
,
IncomeEnum
incomeEnum
,
IncomeRangeEnum
incomeRangeEnum
,
Long
userId
,
IncomeEnum
incomeEnum
,
IncomeRangeEnum
incomeRangeEnum
,
...
@@ -725,7 +725,7 @@ public class InnerController implements IBaseController {
...
@@ -725,7 +725,7 @@ public class InnerController implements IBaseController {
* @param idNo - 身份证号
* @param idNo - 身份证号
* @return JsonResult<List < UserDetail>>
* @return JsonResult<List < UserDetail>>
*/
*/
@RequestMapping
(
"/user_detail/search_list"
)
//
@RequestMapping("/user_detail/search_list")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"按照姓名、份证号或手机号查询用户实名信息 - 精确查询,供客服用,不限制入参正确性"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"按照姓名、份证号或手机号查询用户实名信息 - 精确查询,供客服用,不限制入参正确性"
)
@TargetDataSource
(
type
=
DSType
.
SLAVE
)
@TargetDataSource
(
type
=
DSType
.
SLAVE
)
public
JsonResult
<
List
<
UserDetailVO
>>
searchUserDetailList
(
String
name
,
String
phoneNo
,
String
idNo
)
{
public
JsonResult
<
List
<
UserDetailVO
>>
searchUserDetailList
(
String
name
,
String
phoneNo
,
String
idNo
)
{
...
@@ -780,7 +780,7 @@ public class InnerController implements IBaseController {
...
@@ -780,7 +780,7 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
"success"
,
userDetailList
);
return
JsonResult
.
buildSuccessResult
(
"success"
,
userDetailList
);
}
}
@RequestMapping
(
"/user_ext_info/search/user_id"
)
//
@RequestMapping("/user_ext_info/search/user_id")
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户扩展信息"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"查询用户扩展信息"
)
public
JsonResult
searchUserExtInfoByUserId
(
Long
userId
)
{
public
JsonResult
searchUserExtInfoByUserId
(
Long
userId
)
{
if
(
userId
==
null
)
{
if
(
userId
==
null
)
{
...
@@ -914,7 +914,7 @@ public class InnerController implements IBaseController {
...
@@ -914,7 +914,7 @@ public class InnerController implements IBaseController {
@ApiResponse
(
code
=
HttpStatus
.
SC_NOT_FOUND
,
message
=
"User not found"
,
response
=
cn
.
quantgroup
.
xyqb
.
model
.
ApiResponse
.
class
)
@ApiResponse
(
code
=
HttpStatus
.
SC_NOT_FOUND
,
message
=
"User not found"
,
response
=
cn
.
quantgroup
.
xyqb
.
model
.
ApiResponse
.
class
)
})
})
@ApiOperation
(
notes
=
"用户全量信息查询接口"
,
value
=
"用户全量信息查询接口"
,
nickname
=
"findUserAssociationModel"
)
@ApiOperation
(
notes
=
"用户全量信息查询接口"
,
value
=
"用户全量信息查询接口"
,
nickname
=
"findUserAssociationModel"
)
@RequestMapping
(
path
=
"/user-association/search/userId"
,
method
=
{
RequestMethod
.
GET
,
RequestMethod
.
POST
})
//
@RequestMapping(path = "/user-association/search/userId", method = {RequestMethod.GET, RequestMethod.POST})
public
JsonResult
findUserAssociationModelByUserId
(
@ApiParam
(
value
=
"用户ID"
,
required
=
false
)
@RequestParam
(
name
=
"userId"
,
required
=
false
)
Long
userId
,
public
JsonResult
findUserAssociationModelByUserId
(
@ApiParam
(
value
=
"用户ID"
,
required
=
false
)
@RequestParam
(
name
=
"userId"
,
required
=
false
)
Long
userId
,
@ApiParam
(
value
=
"用户注册手机号"
,
required
=
false
)
@RequestParam
(
name
=
"phoneNo"
,
required
=
false
)
String
phoneNo
)
{
@ApiParam
(
value
=
"用户注册手机号"
,
required
=
false
)
@RequestParam
(
name
=
"phoneNo"
,
required
=
false
)
String
phoneNo
)
{
boolean
userIdOk
=
Objects
.
nonNull
(
userId
)
&&
userId
>
0
;
boolean
userIdOk
=
Objects
.
nonNull
(
userId
)
&&
userId
>
0
;
...
@@ -941,14 +941,14 @@ public class InnerController implements IBaseController {
...
@@ -941,14 +941,14 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResultGeneric
(
userService
.
findUserFullSearchByUserId
(
userId
));
return
JsonResult
.
buildSuccessResultGeneric
(
userService
.
findUserFullSearchByUserId
(
userId
));
}
}
@RequestMapping
(
"/user-association/search/phone"
)
//
@RequestMapping("/user-association/search/phone")
public
JsonResult
findUserAssociationByPhone
(
String
phoneNo
)
{
public
JsonResult
findUserAssociationByPhone
(
String
phoneNo
)
{
UserDetail
userDetail
=
userDetailService
.
findByPhoneNo
(
phoneNo
);
UserDetail
userDetail
=
userDetailService
.
findByPhoneNo
(
phoneNo
);
UserAssociation
bean
=
getUserAssociation
(
userDetail
);
UserAssociation
bean
=
getUserAssociation
(
userDetail
);
return
JsonResult
.
buildSuccessResult
(
""
,
bean
);
return
JsonResult
.
buildSuccessResult
(
""
,
bean
);
}
}
@RequestMapping
(
"/user-association/search/uid"
)
//
@RequestMapping("/user-association/search/uid")
public
JsonResult
findUserAssociationByUid
(
Long
uid
)
{
public
JsonResult
findUserAssociationByUid
(
Long
uid
)
{
UserDetail
userDetail
=
userDetailService
.
findByUserId
(
uid
);
UserDetail
userDetail
=
userDetailService
.
findByUserId
(
uid
);
UserAssociation
bean
=
getUserAssociation
(
userDetail
);
UserAssociation
bean
=
getUserAssociation
(
userDetail
);
...
...
src/main/java/cn/quantgroup/xyqb/controller/internal/user/center/UserCenterController.java
View file @
e0c6fe5e
...
@@ -186,7 +186,7 @@ public class UserCenterController {
...
@@ -186,7 +186,7 @@ public class UserCenterController {
* @return
* @return
*/
*/
@PasswordFreeAccessValidator
@PasswordFreeAccessValidator
@RequestMapping
(
"/personalData"
)
//
@RequestMapping("/personalData")
@ApiOperation
(
value
=
"查询个人资料信息"
,
notes
=
"查询个人资料信息"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"查询个人资料信息"
,
notes
=
"查询个人资料信息"
,
httpMethod
=
"POST"
)
public
JsonResult
personalData
(
String
phoneNo
)
{
public
JsonResult
personalData
(
String
phoneNo
)
{
if
(
StringUtils
.
isBlank
(
phoneNo
))
{
if
(
StringUtils
.
isBlank
(
phoneNo
))
{
...
@@ -228,7 +228,7 @@ public class UserCenterController {
...
@@ -228,7 +228,7 @@ public class UserCenterController {
* @param contactJson 要保存的联系人json串
* @param contactJson 要保存的联系人json串
* @return
* @return
*/
*/
@RequestMapping
(
"/contacts/save"
)
//
@RequestMapping("/contacts/save")
@ApiOperation
(
value
=
"保存用户联系人"
,
notes
=
"保存用户联系人"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"保存用户联系人"
,
notes
=
"保存用户联系人"
,
httpMethod
=
"POST"
)
public
JsonResult
saveUserContact
(
String
phoneNo
,
String
contactJson
)
{
public
JsonResult
saveUserContact
(
String
phoneNo
,
String
contactJson
)
{
if
(
StringUtils
.
isEmpty
(
phoneNo
))
{
if
(
StringUtils
.
isEmpty
(
phoneNo
))
{
...
@@ -327,7 +327,7 @@ public class UserCenterController {
...
@@ -327,7 +327,7 @@ public class UserCenterController {
* @param phoneNo
* @param phoneNo
* @return
* @return
*/
*/
@RequestMapping
(
"/searchContacts/phoneNo"
)
//
@RequestMapping("/searchContacts/phoneNo")
@ApiOperation
(
value
=
"查询用户联系人"
,
notes
=
"查询用户联系人"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"查询用户联系人"
,
notes
=
"查询用户联系人"
,
httpMethod
=
"POST"
)
public
JsonResult
searchUserContacts
(
String
phoneNo
)
{
public
JsonResult
searchUserContacts
(
String
phoneNo
)
{
if
(
StringUtils
.
isEmpty
(
phoneNo
))
{
if
(
StringUtils
.
isEmpty
(
phoneNo
))
{
...
@@ -351,7 +351,7 @@ public class UserCenterController {
...
@@ -351,7 +351,7 @@ public class UserCenterController {
* @param maritalStatus 婚姻状态
* @param maritalStatus 婚姻状态
* @return
* @return
*/
*/
@RequestMapping
(
"/save/userExtInfo"
)
//
@RequestMapping("/save/userExtInfo")
@RedisLock
(
prefix
=
"lock:user:ext:"
,
key
=
"#this[0]"
)
@RedisLock
(
prefix
=
"lock:user:ext:"
,
key
=
"#this[0]"
)
@ApiOperation
(
value
=
"保存用户经济学历等信息"
,
notes
=
"保存用户经济学历等信息"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"保存用户经济学历等信息"
,
notes
=
"保存用户经济学历等信息"
,
httpMethod
=
"POST"
)
public
JsonResult
saveUserExtInfo
(
String
phoneNo
,
EducationEnum
educationEnum
,
MaritalStatus
maritalStatus
,
IncomeRangeEnum
incomeRangeEnum
,
OccupationEnum
occupationEnum
)
{
public
JsonResult
saveUserExtInfo
(
String
phoneNo
,
EducationEnum
educationEnum
,
MaritalStatus
maritalStatus
,
IncomeRangeEnum
incomeRangeEnum
,
OccupationEnum
occupationEnum
)
{
...
...
src/main/java/cn/quantgroup/xyqb/controller/middleoffice/contact/ContactController.java
View file @
e0c6fe5e
...
@@ -8,15 +8,9 @@ import cn.quantgroup.xyqb.model.JsonResult;
...
@@ -8,15 +8,9 @@ import cn.quantgroup.xyqb.model.JsonResult;
import
cn.quantgroup.xyqb.model.Tuple
;
import
cn.quantgroup.xyqb.model.Tuple
;
import
cn.quantgroup.xyqb.service.user.IContactService
;
import
cn.quantgroup.xyqb.service.user.IContactService
;
import
cn.quantgroup.xyqb.util.ValidationUtil
;
import
cn.quantgroup.xyqb.util.ValidationUtil
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.PatchMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
import
java.sql.Timestamp
;
import
java.util.List
;
import
java.util.List
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
...
@@ -24,7 +18,7 @@ import java.util.stream.Collectors;
...
@@ -24,7 +18,7 @@ import java.util.stream.Collectors;
* 联系人
* 联系人
*/
*/
@RestController
@RestController
@RequestMapping
(
"/middle_office/contacts"
)
//
@RequestMapping("/middle_office/contacts")
public
class
ContactController
{
public
class
ContactController
{
@Resource
@Resource
...
...
src/main/java/cn/quantgroup/xyqb/controller/middleoffice/userdetail/UserDetailController.java
View file @
e0c6fe5e
...
@@ -10,19 +10,17 @@ import cn.quantgroup.xyqb.service.auth.IIdCardService;
...
@@ -10,19 +10,17 @@ import cn.quantgroup.xyqb.service.auth.IIdCardService;
import
cn.quantgroup.xyqb.service.user.IUserDetailService
;
import
cn.quantgroup.xyqb.service.user.IUserDetailService
;
import
cn.quantgroup.xyqb.service.user.IUserService
;
import
cn.quantgroup.xyqb.service.user.IUserService
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
import
javax.validation.Valid
;
import
javax.validation.Valid
;
import
java.sql.Timestamp
;
/**
/**
* 用户实名信息
* 用户实名信息
*/
*/
@Slf4j
@Slf4j
@RestController
(
"middleUserDetailController"
)
@RestController
(
"middleUserDetailController"
)
@RequestMapping
(
"/middle_office/user_detail"
)
//
@RequestMapping("/middle_office/user_detail")
public
class
UserDetailController
{
public
class
UserDetailController
{
@Resource
@Resource
...
...
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