123456789101112131415161718192021222324 |
- package com.fdkankan.fusion.service;
- import com.fdkankan.fusion.entity.CommonUpload;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.List;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2024-12-06
- */
- public interface ICommonUploadService extends IService<CommonUpload> {
- List<CommonUpload> getByStatus(Integer status);
- void updateByPath(String msg, String url);
- void updateByPath(String msg, String url,String wgs84 ,String gcj02);
- void updateStatus(String localPath,Integer status);
- }
|