mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
CombinationRecordApiImpl 重命名一下 recordService 改为 combinationRecordService 解决和 mzt-biz-log 组件的 bean 冲突
This commit is contained in:
parent
8fa8f2890b
commit
72cebfca14
@ -7,11 +7,10 @@ import cn.iocoder.yudao.module.promotion.convert.combination.CombinationActivity
|
|||||||
import cn.iocoder.yudao.module.promotion.dal.dataobject.combination.CombinationRecordDO;
|
import cn.iocoder.yudao.module.promotion.dal.dataobject.combination.CombinationRecordDO;
|
||||||
import cn.iocoder.yudao.module.promotion.enums.combination.CombinationRecordStatusEnum;
|
import cn.iocoder.yudao.module.promotion.enums.combination.CombinationRecordStatusEnum;
|
||||||
import cn.iocoder.yudao.module.promotion.service.combination.CombinationRecordService;
|
import cn.iocoder.yudao.module.promotion.service.combination.CombinationRecordService;
|
||||||
|
import jakarta.annotation.Resource;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
|
|
||||||
import jakarta.annotation.Resource;
|
|
||||||
|
|
||||||
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||||
import static cn.iocoder.yudao.module.promotion.enums.ErrorCodeConstants.COMBINATION_RECORD_NOT_EXISTS;
|
import static cn.iocoder.yudao.module.promotion.enums.ErrorCodeConstants.COMBINATION_RECORD_NOT_EXISTS;
|
||||||
|
|
||||||
@ -25,21 +24,21 @@ import static cn.iocoder.yudao.module.promotion.enums.ErrorCodeConstants.COMBINA
|
|||||||
public class CombinationRecordApiImpl implements CombinationRecordApi {
|
public class CombinationRecordApiImpl implements CombinationRecordApi {
|
||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
private CombinationRecordService recordService;
|
private CombinationRecordService combinationRecordService;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void validateCombinationRecord(Long userId, Long activityId, Long headId, Long skuId, Integer count) {
|
public void validateCombinationRecord(Long userId, Long activityId, Long headId, Long skuId, Integer count) {
|
||||||
recordService.validateCombinationRecord(userId, activityId, headId, skuId, count);
|
combinationRecordService.validateCombinationRecord(userId, activityId, headId, skuId, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CombinationRecordCreateRespDTO createCombinationRecord(CombinationRecordCreateReqDTO reqDTO) {
|
public CombinationRecordCreateRespDTO createCombinationRecord(CombinationRecordCreateReqDTO reqDTO) {
|
||||||
return CombinationActivityConvert.INSTANCE.convert4(recordService.createCombinationRecord(reqDTO));
|
return CombinationActivityConvert.INSTANCE.convert4(combinationRecordService.createCombinationRecord(reqDTO));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isCombinationRecordSuccess(Long userId, Long orderId) {
|
public boolean isCombinationRecordSuccess(Long userId, Long orderId) {
|
||||||
CombinationRecordDO record = recordService.getCombinationRecord(userId, orderId);
|
CombinationRecordDO record = combinationRecordService.getCombinationRecord(userId, orderId);
|
||||||
if (record == null) {
|
if (record == null) {
|
||||||
throw exception(COMBINATION_RECORD_NOT_EXISTS);
|
throw exception(COMBINATION_RECORD_NOT_EXISTS);
|
||||||
}
|
}
|
||||||
@ -48,7 +47,7 @@ public class CombinationRecordApiImpl implements CombinationRecordApi {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CombinationValidateJoinRespDTO validateJoinCombination(Long userId, Long activityId, Long headId, Long skuId, Integer count) {
|
public CombinationValidateJoinRespDTO validateJoinCombination(Long userId, Long activityId, Long headId, Long skuId, Integer count) {
|
||||||
return recordService.validateJoinCombination(userId, activityId, headId, skuId, count);
|
return combinationRecordService.validateJoinCombination(userId, activityId, headId, skuId, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user