PlatProcess.java 292 B

123456789101112131415161718
  1. package com.ljsd.plat;
  2. /**
  3. * Description: des
  4. * Author: zsx
  5. * CreateDate: 2020/8/10 15:59
  6. */
  7. public interface PlatProcess {
  8. void init();
  9. String getName();
  10. boolean loginVerfify(String channelName, String openId, String token);
  11. String getVertifyUrl();
  12. }