|
@@ -54,7 +54,8 @@ public interface ContractInfoMapper extends BaseMapper<ContractInfo> {
|
|
|
*/
|
|
|
void updateInfo(@Param("id") String id,
|
|
|
@Param("actualContractAmount") Double actualContractAmount,
|
|
|
- @Param("contractApprovalType") String contractApprovalType);
|
|
|
+ @Param("contractApprovalType") String contractApprovalType,
|
|
|
+ @Param("filedType") String filedType);
|
|
|
|
|
|
List<String> findChildIds(String department);
|
|
|
|
|
@@ -64,4 +65,11 @@ public interface ContractInfoMapper extends BaseMapper<ContractInfo> {
|
|
|
List<String> getClientListByClientNo(@Param("no") String no);
|
|
|
|
|
|
void updateBorrowTypeById(@Param("id") String id, @Param("status")String status);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改纸质归档状态
|
|
|
+ * @param id
|
|
|
+ * @param filedPaperType
|
|
|
+ */
|
|
|
+ void updatePaperInfo(String id, String filedPaperType);
|
|
|
}
|