|
@@ -1,5 +1,6 @@
|
|
package com.jeeplus.finance.reportCancellApplyArchived.mapper;
|
|
package com.jeeplus.finance.reportCancellApplyArchived.mapper;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
@@ -40,14 +41,17 @@ public interface ReportCancellApplyArchivedMapper extends BaseMapper<CwProjectRe
|
|
/**
|
|
/**
|
|
* 根据attachmentId删除上传文件信息
|
|
* 根据attachmentId删除上传文件信息
|
|
*/
|
|
*/
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
void deleteFileInfo(String attachmentId);
|
|
void deleteFileInfo(String attachmentId);
|
|
|
|
|
|
List<WorkAttachment> findList(@Param("id") String id);
|
|
List<WorkAttachment> findList(@Param("id") String id);
|
|
|
|
|
|
Integer findIsExit(@Param("id") String id, @Param("name")String name);
|
|
Integer findIsExit(@Param("id") String id, @Param("name")String name);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
void updateArchiveStyle(@Param("id") String id, @Param("status")String status);
|
|
void updateArchiveStyle(@Param("id") String id, @Param("status")String status);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
List<CwWorkAttachmentArchiveDto> selectFileInfoByAttid(String id);
|
|
List<CwWorkAttachmentArchiveDto> selectFileInfoByAttid(String id);
|
|
|
|
|
|
CwProjectReportApplyArchive selectByArchiveId(String id);
|
|
CwProjectReportApplyArchive selectByArchiveId(String id);
|
|
@@ -58,6 +62,7 @@ public interface ReportCancellApplyArchivedMapper extends BaseMapper<CwProjectRe
|
|
*/
|
|
*/
|
|
CwProjectRecordsDTO selectProjectInfo(String id);
|
|
CwProjectRecordsDTO selectProjectInfo(String id);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
UserDTO getUserInfo(String userId);
|
|
UserDTO getUserInfo(String userId);
|
|
|
|
|
|
void updateCancellArchiveType(@Param("status")String status,@Param("id")String id);
|
|
void updateCancellArchiveType(@Param("status")String status,@Param("id")String id);
|
|
@@ -82,7 +87,15 @@ public interface ReportCancellApplyArchivedMapper extends BaseMapper<CwProjectRe
|
|
|
|
|
|
String getBfId(String newLineId);
|
|
String getBfId(String newLineId);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
CwProjectReportApplyArchive getInfoByBFID(String bfId);
|
|
CwProjectReportApplyArchive getInfoByBFID(String bfId);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
CwProjectRecordsDTO getProjectByNewLineId(String reportNewLineId);
|
|
CwProjectRecordsDTO getProjectByNewLineId(String reportNewLineId);
|
|
|
|
+
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
|
+ void updateInfoById(CwProjectReportApplyArchive cwProjectReportArchive);
|
|
|
|
+
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
|
+ CwProjectReportApplyArchive getById(String id);
|
|
}
|
|
}
|