VppMobileService.java 276 B

123456789101112131415
  1. package com.usky.vpp.service;
  2. import com.usky.common.core.bean.CommonPage;
  3. import java.util.Map;
  4. /**
  5. * VppMobileService 业务接口
  6. */
  7. public interface VppMobileService {
  8. default Object stub(String action, Map<String, Object> params) {
  9. return null;
  10. }
  11. }