14 changed files with 231 additions and 101 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.qs.serve.modules.third.entity.param; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author YenHex |
||||
|
* @since 2023/5/26 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class SSOLoginParam { |
||||
|
|
||||
|
/** |
||||
|
* 员工号 |
||||
|
*/ |
||||
|
String empCode; |
||||
|
|
||||
|
/** |
||||
|
* 支持重写host |
||||
|
* 默认:rewriteHost = https://crm.gdjsl.com
|
||||
|
*/ |
||||
|
String rewriteHost; |
||||
|
|
||||
|
/** |
||||
|
* 跳转地址 |
||||
|
*/ |
||||
|
String jumpTo; |
||||
|
|
||||
|
} |
@ -0,0 +1,58 @@ |
|||||
|
package com.qs.serve.modules.vtb.service.impl; |
||||
|
|
||||
|
import com.qs.serve.modules.seeyon.service.SeeYonOperationService; |
||||
|
import com.qs.serve.modules.tbs.common.TbsSeeYonConst; |
||||
|
import com.qs.serve.modules.tbs.entity.bo.TbsAffairCommitBo; |
||||
|
import com.qs.serve.modules.vtb.entity.VtbVerification; |
||||
|
import com.qs.serve.modules.vtb.mapper.VtbVerificationMapper; |
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @author YenHex |
||||
|
* @since 2023/5/26 |
||||
|
*/ |
||||
|
@Slf4j |
||||
|
@Service |
||||
|
@AllArgsConstructor |
||||
|
public class VtbVerificationOperationServiceImpl implements SeeYonOperationService { |
||||
|
|
||||
|
private VtbVerificationMapper vtbVerificationMapper; |
||||
|
|
||||
|
@Override |
||||
|
public String getTemplateCode() { |
||||
|
return TbsSeeYonConst.CostCheckConf.Code(); |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String getTargetId(TbsAffairCommitBo affairCommit) { |
||||
|
return affairCommit.getCostApplyId()+""; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String getSyFormIdByTargetInfo(TbsAffairCommitBo affairCommit) { |
||||
|
VtbVerification verification = vtbVerificationMapper.selectById(affairCommit.getCostApplyId()); |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public Object doBacked(TbsAffairCommitBo param) { |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public Object doFinished(TbsAffairCommitBo param) { |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public Object doRefuse(TbsAffairCommitBo param) { |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public Object doNext(TbsAffairCommitBo param) { |
||||
|
return null; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue