UserLicenseService.java 559 B

12345678910111213141516171819202122232425
  1. package com.szwl.service;
  2. import com.szwl.model.dto.LicenseDTO;
  3. import com.szwl.model.entity.UserLicense;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import org.springframework.web.multipart.MultipartFile;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author wuhs
  12. * @since 2025-04-08
  13. */
  14. public interface UserLicenseService extends IService<UserLicense> {
  15. /**
  16. * 识别证照
  17. * @param imageType 图片类型
  18. * @param file 图片二进制
  19. * @return
  20. */
  21. LicenseDTO recognize(String imageType, MultipartFile file);
  22. }