IChannelMpConfigService.java 532 B

123456789101112131415161718192021222324252627
  1. package com.sckj.admin.service;
  2. import com.sckj.admin.validate.channel.ChannelMpValidate;
  3. import com.sckj.admin.vo.channel.ChannelMpVo;
  4. /**
  5. * 微信小程序渠道服务接口类
  6. */
  7. public interface IChannelMpConfigService {
  8. /**
  9. * 微信小程序设置详情
  10. *
  11. * @author fzr
  12. * @return ChannelMpVo
  13. */
  14. ChannelMpVo detail();
  15. /**
  16. * 微信小程序设置保存
  17. *
  18. * @author fzr
  19. * @param channelMpValidate 参数
  20. */
  21. void save(ChannelMpValidate channelMpValidate);
  22. }