添加订单类、购物车类
This commit is contained in:
parent
b49abc36ff
commit
5b20bb97ad
|
@ -0,0 +1,14 @@
|
|||
package com.example.takeawaysystemserver.controller;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
@RestController
|
||||
@Api(tags = "商家模块")
|
||||
public class BusinessController {
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
package com.example.takeawaysystemserver.controller;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
@RestController
|
||||
@Api(tags = "订单模块")
|
||||
public class OrderController {
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
package com.example.takeawaysystemserver.controller;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
@RestController
|
||||
@Api(tags = "购物车模块")
|
||||
public class ShoppingCartController {
|
||||
}
|
|
@ -10,7 +10,6 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.security.PublicKey;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
package com.example.takeawaysystemserver.service.fileService;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
public interface FileService {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.example.takeawaysystemserver.service.fileService.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
@Service
|
||||
public class FileServiceImpl {
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package com.example.takeawaysystemserver.service.orderService;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
public interface OrderService {
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
package com.example.takeawaysystemserver.service.orderService.impl;
|
||||
|
||||
import com.example.takeawaysystemserver.service.orderService.OrderService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Ethereal
|
||||
* @date 2024/7/7
|
||||
* @description
|
||||
*/
|
||||
@Service
|
||||
public class OrderServiceImpl implements OrderService {
|
||||
}
|
Loading…
Reference in New Issue