验证加强
This commit is contained in:
@ -61,6 +61,7 @@ public class ShoperController {
|
||||
/**
|
||||
* 订单数据统计
|
||||
*/
|
||||
@AuthCheck
|
||||
@GetMapping("/admin/order/statistics")
|
||||
@ApiOperation(value = "订单数据统计",notes = "订单数据统计")
|
||||
public ApiResult<Map<String,Object>> statistics(){
|
||||
|
@ -379,6 +379,7 @@ public class StoreOrderController {
|
||||
/**
|
||||
* 获取物流信息
|
||||
*/
|
||||
@AuthCheck
|
||||
@PostMapping("/order/express")
|
||||
@ApiOperation(value = "获取物流信息",notes = "获取物流信息")
|
||||
public ApiResult<ExpressInfo> express( @RequestBody ExpressParam expressInfoDo){
|
||||
|
@ -117,6 +117,7 @@ public class UserAddressController {
|
||||
/**
|
||||
* 删除用户地址
|
||||
*/
|
||||
@AuthCheck
|
||||
@PostMapping("/address/del")
|
||||
@ApiOperation(value = "删除用户地址",notes = "删除用户地址")
|
||||
public ApiResult<Boolean> deleteYxUserAddress(@Valid @RequestBody IdParam idParam){
|
||||
@ -141,6 +142,7 @@ public class UserAddressController {
|
||||
/**
|
||||
* 地址详情
|
||||
*/
|
||||
@AuthCheck
|
||||
@GetMapping("/address/detail/{id}")
|
||||
@ApiOperation(value = "地址详情",notes = "地址详情")
|
||||
public ApiResult<YxUserAddressQueryVo> addressDetail(@PathVariable String id){
|
||||
|
Reference in New Issue
Block a user