fix:context注册大小写

This commit is contained in:
guohb
2024-04-23 16:58:21 +08:00
parent c0b623afbe
commit b69d8331dd
3 changed files with 6 additions and 5 deletions

View File

@@ -2,8 +2,8 @@ package com.cool.store.enums;
public enum AuditEnum {
CONTRACT_INTENTION("intention", "意向加盟合同API","IntentAgreementServiceImpl"),
SYS_BUILD("sysBuild", "系统建店API","SysStoreAppServiceImpl"),
CONTRACT_INTENTION("intention", "意向加盟合同API","intentAgreementServiceImpl"),
SYS_BUILD("sysBuild", "系统建店API","sysStoreAppServiceImpl"),
;

View File

@@ -4,7 +4,7 @@ package com.cool.store.service.impl;
import com.cool.store.request.AuditResultRequest;
import org.springframework.stereotype.Service;
@Service
@Service("AuditResultService")
public interface AuditResultService {
Boolean auditResult(AuditResultRequest request);
}

View File

@@ -32,7 +32,7 @@ import java.util.Map;
import java.util.Objects;
@Service
@Service("intentAgreementServiceImpl")
@Slf4j
public class IntentAgreementServiceImpl extends LineFlowService implements IntentAgreementService,AuditResultService {
@@ -291,7 +291,8 @@ public class IntentAgreementServiceImpl extends LineFlowService implements Inten
}
private String getLineId(String kdzBusinessId) {
return null;
String lindId = kdzBusinessId.substring(kdzBusinessId.indexOf("_") + 1,kdzBusinessId.lastIndexOf("_"));
return lindId;
}
private void fillSignatureInfo(Map<String, Object> requestMap) {