mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-08-16 03:01:53 +08:00
🐛修复创建订单的流程,使用到 API Bean 未声明的报错
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package cn.iocoder.yudao.module.market.service.price;
|
||||
|
||||
import cn.iocoder.yudao.module.market.api.price.PriceApi;
|
||||
import cn.iocoder.yudao.module.market.api.price.dto.PriceCalculateReqDTO;
|
||||
import cn.iocoder.yudao.module.market.api.price.dto.PriceCalculateRespDTO;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 价格 API 实现类
|
||||
*
|
||||
* TODO 完善注释
|
||||
*
|
||||
* @author TODO
|
||||
*/
|
||||
@Service
|
||||
public class PriceApiImpl implements PriceApi {
|
||||
|
||||
@Override
|
||||
public PriceCalculateRespDTO calculatePrice(PriceCalculateReqDTO calculateReqDTO) {
|
||||
// TODO fixme:实现逻辑
|
||||
return new PriceCalculateRespDTO();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user