@@ -8,15 +8,12 @@ dependencies { | |||
implementation "${groupname}:common-core:1.0.0-SNAPSHOT" | |||
implementation "${groupname}:comm-core:1.0.0-SNAPSHOT" | |||
implementation "${groupname}:entity-core:1.0.0-SNAPSHOT" | |||
implementation "${groupname}:ats-protocol:1.0.0-SNAPSHOT" | |||
implementation "${groupname}:bls-protocol:1.0.0-SNAPSHOT" | |||
implementation('cn.com.taiji.common:sso-client:2.3.10.7') | |||
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery" | |||
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config" | |||
implementation 'com.alibaba:druid-spring-boot-starter:1.2.8' | |||
implementation "org.springframework.cloud:spring-cloud-starter-openfeign" | |||
implementation "org.springframework.boot:spring-boot-starter-data-redis" | |||
implementation 'com.github.mwiede:jsch:0.2.9' | |||
implementation(group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0') { | |||
// exclude group: 'net.bytebuddy',module: 'byte-buddy' | |||
} |
@@ -30,10 +30,7 @@ public class CronPara extends AbstractSysConf { | |||
private String sample = "1 * * * * ?"; | |||
private String timeStep = "1/10 * * * * ?"; | |||
private String fundsFileDownload = "0 0 1 * * ?"; | |||
private String fundsSupplyPush = "0 0 2/2 * * ?"; | |||
private String fundsQueryResult = "0 0/30 * * * ?"; | |||
private String fundsCreateReturn = "0 0 0 * * ?"; | |||
private String etcTranscationFtpSync = "0 0/10 * * * ?"; | |||
@@ -13,7 +13,6 @@ package cn.com.taiji.dmq.model; | |||
*/ | |||
public enum TaskGroup { | |||
SYSTEM("系统内置") {}, | |||
FUNDS("请款扣费") {}, | |||
; | |||
private final String value; | |||
@@ -21,10 +21,6 @@ import java.util.Random; | |||
public enum TaskInfo implements PriorityTaskDefinition { | |||
SAMPLE("示例", TaskGroup.SYSTEM, "sample", 60, true, List.of(1, 2)), | |||
TIME_STEP("按时间段执行的任务", TaskGroup.SYSTEM, "timeStep", 600, true, List.of(1, 2, 3)), | |||
FUNDS_FILE_DOWNLOAD("下载请款文件", TaskGroup.FUNDS, "fundsFileDownload", -1, false, List.of(1, 2, 3)), | |||
FUNDS_SUPPLY_PUSH("补扣推送", TaskGroup.FUNDS, "fundsSupplyPush", -1, false, List.of(1, 2, 3)), | |||
FUNDS_QUERY_RESULT("查询请款结果", TaskGroup.FUNDS, "fundsQueryResult", -1, false, List.of(1, 2, 3)), | |||
FUNDS_CREATE_RETURN("生成回盘文件", TaskGroup.FUNDS, "fundsCreateReturn", -1, false, List.of(1, 2, 3)), | |||
ETC_TRANSACTION_FTP_SYNC("交易FTP同步", TaskGroup.SYSTEM, "etcTranscationFtpSync", -1, true, List.of(1, 2)),; | |||
; | |||