duhui 2021-05-18 11:29:11 +08:00
commit 637f805076
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);
String happid;
String appkey;
private String loginVertifyUrl;
protected String loginVertifyUrl;
public AbstractMHTPlat() {
init();
loginVertifyUrl = "http://interface.18183g.top/interface/user-login/checkLogin";
init();
}

View File

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