12345678910111213141516171819202122232425 |
- package com.szwl.service;
- import com.szwl.model.dto.LicenseDTO;
- import com.szwl.model.entity.UserLicense;
- import com.baomidou.mybatisplus.extension.service.IService;
- import org.springframework.web.multipart.MultipartFile;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author wuhs
- * @since 2025-04-08
- */
- public interface UserLicenseService extends IService<UserLicense> {
- /**
- * 识别证照
- * @param imageType 图片类型
- * @param file 图片二进制
- * @return
- */
- LicenseDTO recognize(String imageType, MultipartFile file);
- }
|