海外新测试服

master
lvxinran 2021-05-18 11:26:47 +08:00
parent dc88a60cfb
commit 2add406639
2 changed files with 4 additions and 2 deletions

View File

@ -17,10 +17,10 @@ public abstract class AbstractMHTPlat implements PlatProcess {
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractMHTPlat.class); private static final Logger LOGGER = LoggerFactory.getLogger(AbstractMHTPlat.class);
String happid; String happid;
String appkey; String appkey;
private String loginVertifyUrl; protected String loginVertifyUrl;
public AbstractMHTPlat() { public AbstractMHTPlat() {
init();
loginVertifyUrl = "http://interface.18183g.top/interface/user-login/checkLogin"; loginVertifyUrl = "http://interface.18183g.top/interface/user-login/checkLogin";
init();
} }

View File

@ -27,6 +27,8 @@ public class MHTHyTestPlat extends AbstractMHTPlat {
public void init() { public void init() {
happid = "3192205470869872"; happid = "3192205470869872";
appkey = "2c2ab86233c7266e9360b69506734b3f"; appkey = "2c2ab86233c7266e9360b69506734b3f";
loginVertifyUrl = "http://43.128.55.182:8091/interface/user-login/checkLogin";
} }
} }