fix:context注册大小写
This commit is contained in:
@@ -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"),
|
||||
|
||||
;
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user