mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 20:54:26 +08:00
refactor:类名重命名
This commit is contained in:
parent
012d5850f6
commit
ee2969a3a8
@ -20,7 +20,7 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@Api(tags = "【系统管理】订单服务")
|
||||
@RestController("")
|
||||
@RestController("AdminOrderController")
|
||||
@RequestMapping("/api.admin/v1/orders")
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
|
@ -21,7 +21,7 @@ import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "【系统管理】营销广告")
|
||||
@RestController
|
||||
@RestController("AdminAdvertController")
|
||||
@RequestMapping("/api.admin/v1/adverts")
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
|
@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "【移动端】营销广告")
|
||||
@RestController("AppAdvertController")
|
||||
@RestController
|
||||
@RequestMapping("/api.app/v1/adverts")
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
|
@ -24,11 +24,11 @@ import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
@Api(tags = "会员充值接口")
|
||||
@RestController
|
||||
@Api(tags = "【系统管理】会员充值")
|
||||
@RestController("AdminAdminRechargeController")
|
||||
@RequestMapping("/api.admin/v1/recharge_orders")
|
||||
@Slf4j
|
||||
public class AdminRechargeController {
|
||||
public class RechargeController {
|
||||
|
||||
@Autowired
|
||||
private RestTemplate restTemplate;
|
@ -20,11 +20,11 @@ import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
@Api(tags = "会员接口")
|
||||
@RestController
|
||||
@Api(tags = "【系统管理】会员管理")
|
||||
@RestController("AdminUserController")
|
||||
@RequestMapping("/api.admin/v1/users")
|
||||
@Slf4j
|
||||
public class AdminUserController {
|
||||
public class UserController {
|
||||
|
||||
@Autowired
|
||||
private IUmsUserService iUmsUserService;
|
@ -17,12 +17,12 @@ import org.springframework.web.bind.annotation.*;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "会员接口")
|
||||
@Api(tags = "【移动端】会员地址")
|
||||
@RestController
|
||||
@RequestMapping("/api.app/v1/addresses")
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
public class AppAddressController {
|
||||
public class AddressController {
|
||||
|
||||
private IUmsAddressService iUmsAddressService;
|
||||
|
@ -18,12 +18,12 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@Api(tags = "会员接口")
|
||||
@Api(tags = "【移动端】会员服务")
|
||||
@RestController
|
||||
@RequestMapping("/api.app/v1/users")
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
public class AppUserController {
|
||||
public class UserController {
|
||||
|
||||
private IUmsUserService iUmsUserService;
|
||||
|
Loading…
Reference in New Issue
Block a user