| 123456789101112131415161718 |
- package com.ljsd.plat;
- /**
- * Description: des
- * Author: zsx
- * CreateDate: 2020/8/10 15:59
- */
- public interface PlatProcess {
- void init();
- String getName();
- boolean loginVerfify(String channelName, String openId, String token);
- String getVertifyUrl();
- }
|