ShortUrlService.java 413 B

123456789101112131415161718
  1. package com.keao.edu.user.service;
  2. import com.keao.edu.common.service.BaseService;
  3. import com.keao.edu.user.entity.ShortUrl;
  4. public interface ShortUrlService extends BaseService<Long, ShortUrl> {
  5. /**
  6. * @describe 创建短链接
  7. * @author Joburgess
  8. * @date 2020.06.22
  9. * @param sourceUrl: 原链接
  10. * @return java.lang.String
  11. */
  12. String createShortUrl(String sourceUrl);
  13. }