Commit aa9144b4 authored by LSL's avatar LSL

推送天思

parent 92d21fda
package com.jqtx.windows.component;
import com.jqtx.windows.component.model.LoanModel;
import com.jqtx.windows.repository.mapper.WindowsCreditMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
public interface LoanComponent {
......@@ -16,4 +15,6 @@ public interface LoanComponent {
LoanModel getByOrderNo(String orderNo);
LoanModel getByOrderNoInit(String orderNo);
List<String> getNotTsLoanModel();
}
package com.jqtx.windows.component.enums;
/**
* @Author: wuwei
* @Date: 2019/12/04 13:40
* 重试推送类型
*/
public enum RetryStateEnum {
SUBMITED("SUBMITED", "待推送"),
PUSH_SUCCESS("SUCCESS", "推送成功"),
PUSH_FAIL("FAIL", "推送失败");
private String message;
private String code;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
private RetryStateEnum(String code, String message) {
this.message = message;
this.code = code;
}
}
package com.jqtx.windows.component.enums;
/**
* @Author: wuwei
* @Date: 2019/12/04 13:40
* 重试推送类型
*/
public enum RetryTypeEnum {
RETRY_TYPE_BACK_LOAN("RETRY_TYPE_BACK_LOAN", "借款推送"),
RETRY_TYPE_BACK_PLAN("RETRY_TYPE_BACK_PLAN", "还款计划推送")
;
private String message;
private String code;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
private RetryTypeEnum(String code, String message) {
this.message = message;
this.code = code;
}
}
......@@ -3,12 +3,15 @@ package com.jqtx.windows.component.impl;
import cn.hutool.core.bean.BeanUtil;
import com.jqtx.windows.component.LoanComponent;
import com.jqtx.windows.component.model.LoanModel;
import com.jqtx.windows.component.model.LoanPlanModel;
import com.jqtx.windows.repository.entity.WindowsLoan;
import com.jqtx.windows.repository.entity.WindowsLoanExample;
import com.jqtx.windows.repository.mapper.WindowsLoanMapper;
import com.jqtx.windows.repository.mapper.WindowsPublicMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
@Service
......@@ -17,6 +20,9 @@ public class LoanComponentImpl implements LoanComponent {
@Autowired
private WindowsLoanMapper windowsLoanMapper;
@Autowired
private WindowsPublicMapper windowsPublicMapper;
@Override
public LoanModel getByLoanNo(String loanNo) {
WindowsLoanExample example = new WindowsLoanExample();
......@@ -63,4 +69,9 @@ public class LoanComponentImpl implements LoanComponent {
List<WindowsLoan> windowsLoans = windowsLoanMapper.selectByExample(example);
return windowsLoans.stream().map(m -> BeanUtil.toBean(m, LoanModel.class)).findFirst().orElse(null);
}
@Override
public List<String> getNotTsLoanModel() {
return windowsPublicMapper.getNotTsLoanModel();
}
}
package com.jqtx.windows.job;
import com.alibaba.fastjson2.JSON;
import com.jqtx.windows.component.LoanPlanComponent;
import com.jqtx.windows.component.SyncBuildComponent;
import com.jqtx.windows.component.config.Contant;
import com.jqtx.windows.component.config.FeignUrlConfig;
import com.jqtx.windows.component.enums.RetryStateEnum;
import com.jqtx.windows.component.enums.RetryTypeEnum;
import com.jqtx.windows.component.impl.LoanComponentImpl;
import com.jqtx.windows.component.model.LoanPlanModel;
import com.jqtx.windows.component.tsmodel.AddCaseRequest;
import com.jqtx.windows.repository.entity.WindowsRetry;
import com.jqtx.windows.repository.mapper.WindowsRetryMapper;
import com.jqtx.windows.service.SyncDataService;
import com.jqtx.windows.web.response.JsonResult;
import com.xxl.job.core.context.XxlJobHelper;
import com.xxl.job.core.handler.annotation.XxlJob;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.text.MessageFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
......@@ -37,6 +42,10 @@ public class SyncRetryJob {
private LoanPlanComponent loanPlanComponent;
@Autowired
private SyncBuildComponent syncBuildComponent;
@Autowired
private LoanComponentImpl loanComponent;
@Autowired
private WindowsRetryMapper windowsRetryMapper;
@XxlJob(value = "syncRetryJobHandler")
private void process() {
......@@ -47,9 +56,14 @@ public class SyncRetryJob {
log.info("任务开始时间-[{}]", executeStartTime.format(formatter));
log.info("需要重新推送案件处理开始...");
Long li1 = System.currentTimeMillis();
List<LoanPlanModel> list = loanPlanComponent.getByLoan(param);
for (LoanPlanModel planModel : list) {
sendTs(syncBuildComponent.buildAddCaseRequest(planModel.getPlanNo()));
//查询
if (StringUtils.isNotBlank(param)) {
sendTs(param);
} else {
List<String> loanModels = loanComponent.getNotTsLoanModel();
for (String loanNo : loanModels) {
sendTs(loanNo);
}
}
Long li2 = System.currentTimeMillis();
log.info("任务结束时间-[{}],执行-[{}]", executeStartTime.format(formatter), li2 - li1);
......@@ -59,6 +73,26 @@ public class SyncRetryJob {
log.info("需要重新推送案件处理结束...");
}
public void sendTs(String loanNo) {
List<LoanPlanModel> list = loanPlanComponent.getByLoan(loanNo);
for (LoanPlanModel planModel : list) {
Boolean planboolean = sendTs(syncBuildComponent.buildAddCaseRequest(planModel.getPlanNo()));
insertRetry(planModel.getPlanNo(), RetryTypeEnum.RETRY_TYPE_BACK_PLAN.getCode(),planboolean);
}
insertRetry(loanNo, RetryTypeEnum.RETRY_TYPE_BACK_LOAN.getCode(),true);
}
private void insertRetry(String bizCode,String bizType,Boolean bizState){
WindowsRetry windowsRetry = new WindowsRetry();
windowsRetry.setBizCode(bizCode);
windowsRetry.setBizType(bizType);
windowsRetry.setBizState(bizState ? RetryStateEnum.PUSH_SUCCESS.getCode() : RetryStateEnum.PUSH_FAIL.getCode());
windowsRetry.setPushDate(LocalDate.now());
LocalDateTime localDateTime = LocalDateTime.now();
windowsRetry.setGmtCreated(localDateTime);
windowsRetry.setGmtModified(localDateTime);
windowsRetryMapper.insert(windowsRetry);
}
public Boolean sendTs(AddCaseRequest addCaseRequest) {
String url = feignUrlConfig.getUrl() + Contant.REMIND_URL;
String body = com.alibaba.fastjson.JSON.toJSONString(addCaseRequest);
......@@ -73,5 +107,4 @@ public class SyncRetryJob {
}
}
package com.jqtx.windows.repository.mapper;
import com.jqtx.windows.repository.entity.WindowsLoan;
import com.jqtx.windows.repository.entity.WindowsLoanExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface WindowsPublicMapper {
List<String> getNotTsLoanModel();
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jqtx.windows.repository.mapper.WindowsPublicMapper">
<resultMap id="LoanModelResultMap" type="com.jqtx.windows.repository.entity.WindowsLoan">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="loan_no" jdbcType="VARCHAR" property="loanNo" />
<result column="order_no" jdbcType="VARCHAR" property="orderNo" />
<result column="loan_amt" jdbcType="DECIMAL" property="loanAmt" />
<result column="raise_amt" jdbcType="DECIMAL" property="raiseAmt" />
<result column="service_amt" jdbcType="DECIMAL" property="serviceAmt" />
<result column="rate_amt" jdbcType="DECIMAL" property="rateAmt" />
<result column="burden_amt" jdbcType="DECIMAL" property="burdenAmt" />
<result column="loan_usage" jdbcType="VARCHAR" property="loanUsage" />
<result column="raise_date" jdbcType="TIMESTAMP" property="raiseDate" />
<result column="loan_status" jdbcType="VARCHAR" property="loanStatus" />
<result column="bank_account" jdbcType="VARCHAR" property="bankAccount" />
<result column="loan_term" jdbcType="VARCHAR" property="loanTerm" />
<result column="loan_credit_result" jdbcType="VARCHAR" property="loanCreditResult" />
<result column="gmt_created" jdbcType="TIMESTAMP" property="gmtCreated" />
<result column="gmt_modified" jdbcType="TIMESTAMP" property="gmtModified" />
<result column="memo" jdbcType="VARCHAR" property="memo" />
</resultMap>
<select id="getNotTsLoanModel" resultType="java.lang.String">
SELECT
wl.loan_no
FROM
windows_loan wl
LEFT JOIN
windows_retry wr
ON wl.loan_no = wr.biz_code
WHERE wr.id is NULL AND wl.loan_status = 'BACKING' LIMIT 100
</select>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment