mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-08-24 15:11:53 +08:00
创建交易订单-单元测试
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package cn.iocoder.yudao.module.market.api.price;
|
||||
|
||||
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;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
/**
|
||||
* @author LeeYan9
|
||||
* @since 2022-09-06
|
||||
*/
|
||||
@Service
|
||||
@Validated
|
||||
public class PriceApiImpl implements PriceApi {
|
||||
|
||||
@Override
|
||||
public PriceCalculateRespDTO calculatePrice(PriceCalculateReqDTO calculateReqDTO) {
|
||||
return null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user