添加订单类、购物车类

This commit is contained in:
muhua 2024-07-07 15:56:40 +08:00
parent b49abc36ff
commit 5b20bb97ad
8 changed files with 85 additions and 1 deletions

View File

@ -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 {
}

View File

@ -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 {
}

View File

@ -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 {
}

View File

@ -10,7 +10,6 @@ import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.security.PublicKey;
/** /**
* @author Ethereal * @author Ethereal

View File

@ -0,0 +1,9 @@
package com.example.takeawaysystemserver.service.fileService;
/**
* @author Ethereal
* @date 2024/7/7
* @description
*/
public interface FileService {
}

View File

@ -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 {
}

View File

@ -0,0 +1,9 @@
package com.example.takeawaysystemserver.service.orderService;
/**
* @author Ethereal
* @date 2024/7/7
* @description
*/
public interface OrderService {
}

View File

@ -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 {
}