ICommonUploadService.java 549 B

123456789101112131415161718192021222324
  1. package com.fdkankan.fusion.service;
  2. import com.fdkankan.fusion.entity.CommonUpload;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.List;
  5. /**
  6. * <p>
  7. * 服务类
  8. * </p>
  9. *
  10. * @author
  11. * @since 2024-12-06
  12. */
  13. public interface ICommonUploadService extends IService<CommonUpload> {
  14. List<CommonUpload> getByStatus(Integer status);
  15. void updateByPath(String msg, String url);
  16. void updateByPath(String msg, String url,String wgs84 ,String gcj02);
  17. void updateStatus(String localPath,Integer status);
  18. }