mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2026-04-23 02:48:34 +08:00
update 迁移vue5.x内容,调整bo,vo映射,迁移租户业务
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package org.dromara.resource.api;
|
||||
|
||||
import org.dromara.common.core.exception.ServiceException;
|
||||
import org.dromara.resource.api.domain.SysFile;
|
||||
import org.dromara.resource.api.domain.RemoteFile;
|
||||
|
||||
/**
|
||||
* 文件服务
|
||||
@@ -16,7 +16,7 @@ public interface RemoteFileService {
|
||||
* @param file 文件信息
|
||||
* @return 结果
|
||||
*/
|
||||
SysFile upload(String name, String originalFilename, String contentType, byte[] file) throws ServiceException;
|
||||
RemoteFile upload(String name, String originalFilename, String contentType, byte[] file) throws ServiceException;
|
||||
|
||||
/**
|
||||
* 通过ossId查询对应的url
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
package org.dromara.resource.api;
|
||||
|
||||
import org.dromara.common.core.exception.ServiceException;
|
||||
import org.dromara.resource.api.domain.SysFile;
|
||||
import org.dromara.resource.api.domain.SysSms;
|
||||
import org.dromara.resource.api.domain.RemoteSms;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -20,6 +19,6 @@ public interface RemoteSmsService {
|
||||
* @param templateId 模板id
|
||||
* @param param 模板对应参数
|
||||
*/
|
||||
SysSms send(String phones, String templateId, Map<String, String> param) throws ServiceException;
|
||||
RemoteSms send(String phones, String templateId, Map<String, String> param) throws ServiceException;
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import java.io.Serializable;
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Data
|
||||
public class SysFile implements Serializable {
|
||||
public class RemoteFile implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -10,7 +10,7 @@ import java.io.Serializable;
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Data
|
||||
public class SysSms implements Serializable {
|
||||
public class RemoteSms implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
Reference in New Issue
Block a user