fix 修复 测试出的bug 调整sql结构

This commit is contained in:
疯狂的狮子Li
2024-06-03 18:17:30 +08:00
parent d96e725f16
commit 8db7fb661b
13 changed files with 210 additions and 311 deletions

View File

@@ -15,7 +15,7 @@ import org.mapstruct.ReportingPolicy;
@Mapper(componentModel = MappingConstants.ComponentModel.SPRING, unmappedTargetPolicy = ReportingPolicy.IGNORE)
public interface SysOssVoConvert extends BaseMapper<SysOssVo, RemoteFile> {
@Mapping(target = "fileName", source = "name")
@Mapping(target = "name", source = "fileName")
RemoteFile convert(SysOssVo sysOssVo);
}