generated from root/miduo_server
海贼0.1折登陆
parent
e9346bf5d8
commit
57abd4c45d
|
|
@ -1,7 +1,5 @@
|
|||
package com.ljsd.controller;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.ljsd.pojo.VerifyParams;
|
||||
import com.ljsd.redis.RedisKey;
|
||||
import com.ljsd.service.*;
|
||||
import com.ljsd.util.AppConstans;
|
||||
|
|
@ -17,7 +15,6 @@ import javax.servlet.http.HttpServletRequest;
|
|||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
import java.security.SecureRandom;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
|
@ -43,7 +40,7 @@ public class GetUserController extends HttpServlet {
|
|||
// serviceMap.put("HF", new HFVerifyService("HF"));
|
||||
// serviceMap.put("QUICK3", new QuickVerifyService3("QUICK3"));
|
||||
serviceMap.put("QUICK", new QuickVerifyService("QUICK"));
|
||||
serviceMap.put("HAIZEI01", new QuickHaiZeiVerifyService("HAIZEI01"));
|
||||
serviceMap.put("ONEPIECE01", new QuickOnePiece01VerifyService("ONEPIECE01"));
|
||||
serviceMap.put("XQDC", new XiaoqiDiscountVerifyService("XQDC"));
|
||||
serviceMap.put("YOUGU", new YouGuVerifyService("YG"));
|
||||
serviceMap.put("YGDC", new YouguDiscountVerifyService("YGDC"));
|
||||
|
|
|
|||
|
|
@ -1,22 +1,19 @@
|
|||
package com.ljsd.service;
|
||||
|
||||
import com.ljsd.pojo.VerifyParams;
|
||||
import com.ljsd.util.AppConstans;
|
||||
import com.ljsd.util.HttpUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class QuickHaiZeiVerifyService extends QuickVerifyService {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(QuickHaiZeiVerifyService.class);
|
||||
public class QuickOnePiece01VerifyService extends QuickVerifyService {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(QuickOnePiece01VerifyService.class);
|
||||
public final static String product_code = "83982581031944856480581367091990";
|
||||
|
||||
public QuickHaiZeiVerifyService(String sign) {
|
||||
public QuickOnePiece01VerifyService(String sign) {
|
||||
super(sign);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue