Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rs-cloud-platform
Project
Project
Details
Activity
Releases
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
周健威
rs-cloud-platform
Commits
1f1d853a
Commit
1f1d853a
authored
Dec 02, 2020
by
unset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户信息修改
parent
701baba7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
AppUserRest.java
...va/com/github/wxiaoqi/security/admin/rpc/AppUserRest.java
+1
-1
UserAddress.java
...va/com/upyuns/platform/rs/website/entity/UserAddress.java
+0
-7
UserAddressController.java
...platform/rs/website/controller/UserAddressController.java
+5
-1
No files found.
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/rpc/AppUserRest.java
View file @
1f1d853a
...
@@ -31,7 +31,7 @@ import java.util.Map;
...
@@ -31,7 +31,7 @@ import java.util.Map;
* @author keliii
* @author keliii
*/
*/
@RestController
@RestController
@RequestMapping
(
"/ap
p/unauth
"
)
@RequestMapping
(
"/ap
i/app
"
)
public
class
AppUserRest
{
public
class
AppUserRest
{
@Autowired
@Autowired
private
AppPermissionService
appPermissionService
;
private
AppPermissionService
appPermissionService
;
...
...
rs-website/rs-website-api/src/main/java/com/upyuns/platform/rs/website/entity/UserAddress.java
View file @
1f1d853a
...
@@ -75,13 +75,6 @@ public class UserAddress implements Serializable {
...
@@ -75,13 +75,6 @@ public class UserAddress implements Serializable {
@ApiModelProperty
(
value
=
"乡镇/街道"
)
@ApiModelProperty
(
value
=
"乡镇/街道"
)
private
String
town
;
private
String
town
;
/**
* 行政编码
*/
@Column
(
name
=
"area_code"
)
@ApiModelProperty
(
value
=
"行政编码"
)
private
String
areaCode
;
/**
/**
*
*
*/
*/
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/UserAddressController.java
View file @
1f1d853a
...
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.*;
...
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.*;
@RestController
@RestController
@RequestMapping
(
"userAddress"
)
@RequestMapping
(
"userAddress"
)
public
class
UserAddressController
extends
BaseController
<
UserAddressBiz
,
UserAddress
>
{
public
class
UserAddressController
extends
BaseController
<
UserAddressBiz
,
UserAddress
>{
@GetMapping
(
value
=
"getList"
)
@GetMapping
(
value
=
"getList"
)
public
ObjectRestResponse
getList
(
UserAddressDto
userAddressDto
)
{
public
ObjectRestResponse
getList
(
UserAddressDto
userAddressDto
)
{
...
@@ -21,4 +21,8 @@ public class UserAddressController extends BaseController<UserAddressBiz,UserAdd
...
@@ -21,4 +21,8 @@ public class UserAddressController extends BaseController<UserAddressBiz,UserAdd
return
baseBiz
.
addUpdate
(
userAddress
);
return
baseBiz
.
addUpdate
(
userAddress
);
}
}
@GetMapping
(
value
=
"getUserAddress"
)
public
ObjectRestResponse
getUserAddress
(
Long
userId
)
{
return
ObjectRestResponse
.
succ
(
baseBiz
.
getUserAddress
(
userId
));
}
}
}
\ No newline at end of file
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