|
@@ -1,5 +1,6 @@
|
|
package com.jeeplus.assess.workContract.mapper;
|
|
package com.jeeplus.assess.workContract.mapper;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.jeeplus.assess.workContract.domain.WorkContractBorrow;
|
|
import com.jeeplus.assess.workContract.domain.WorkContractBorrow;
|
|
import com.jeeplus.assess.workContract.domain.WorkContractBorrowMessage;
|
|
import com.jeeplus.assess.workContract.domain.WorkContractBorrowMessage;
|
|
@@ -13,12 +14,13 @@ public interface WorkContractBorrowMapper extends BaseMapper<WorkContractBorrow>
|
|
|
|
|
|
void updateStatusById(@Param("id") String id, @Param("borrowType")String borrowType);
|
|
void updateStatusById(@Param("id") String id, @Param("borrowType")String borrowType);
|
|
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
void updateStatusByContractInfoId(@Param("id") String id, @Param("borrowType")String borrowType);
|
|
void updateStatusByContractInfoId(@Param("id") String id, @Param("borrowType")String borrowType);
|
|
|
|
|
|
WorkContractBorrow selectFileByContractInfoId (@Param("id") String id);
|
|
WorkContractBorrow selectFileByContractInfoId (@Param("id") String id);
|
|
|
|
|
|
void updateMessageByBorrowId(@Param("id") String id, @Param("borrowType")String borrowType, @Param("type")String type);
|
|
void updateMessageByBorrowId(@Param("id") String id, @Param("borrowType")String borrowType, @Param("type")String type);
|
|
-
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
void deleteMessageById(@Param("id") String id);
|
|
void deleteMessageById(@Param("id") String id);
|
|
|
|
|
|
List<WorkContractBorrowMessage> findMessageList(@Param("id") String id);
|
|
List<WorkContractBorrowMessage> findMessageList(@Param("id") String id);
|