Commit b4f70beb authored by liuzicheng's avatar liuzicheng

初始化项目

parent 389ad70c
package com.jqtx.windows.web.config; package com.jqtx.windows.web.config;
import com.jqtx.windows.command.CreditSubmitCommand; import com.jqtx.windows.command.CreditSubmitCommand;
import com.jqtx.windows.command.GetCreditCommand;
import com.jqtx.windows.command.LoanStatusCommand; import com.jqtx.windows.command.LoanStatusCommand;
import com.jqtx.windows.command.LoanSubmitCommand; import com.jqtx.windows.command.LoanSubmitCommand;
import com.jqtx.windows.common.factory.AbstractCommand; import com.jqtx.windows.common.factory.AbstractCommand;
...@@ -22,6 +23,8 @@ public class RouterConfig implements CommandLineRunner { ...@@ -22,6 +23,8 @@ public class RouterConfig implements CommandLineRunner {
private LoanSubmitCommand loanSubmitCommand; private LoanSubmitCommand loanSubmitCommand;
@Autowired @Autowired
private LoanStatusCommand loanStatusCommand; private LoanStatusCommand loanStatusCommand;
@Autowired
private GetCreditCommand getCreditCommand;
private static HashMap<String, AbstractCommand> commandHashMap = new HashMap<>(); private static HashMap<String, AbstractCommand> commandHashMap = new HashMap<>();
...@@ -37,5 +40,6 @@ public class RouterConfig implements CommandLineRunner { ...@@ -37,5 +40,6 @@ public class RouterConfig implements CommandLineRunner {
commandHashMap.put("creditSubmit", creditSubmitCommand); commandHashMap.put("creditSubmit", creditSubmitCommand);
commandHashMap.put("loanSubmit", loanSubmitCommand); commandHashMap.put("loanSubmit", loanSubmitCommand);
commandHashMap.put("getLoanResult", loanStatusCommand); commandHashMap.put("getLoanResult", loanStatusCommand);
commandHashMap.put("getCredit",getCreditCommand);
} }
} }
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