From 2777f69fbf5565f4caf275b8134737e333e407fc Mon Sep 17 00:00:00 2001
From: 张磊磊 <201175954@qq.com>
Date: 星期四, 30 十一月 2023 15:34:56 +0800
Subject: [PATCH] 原料库存统计thingjs/料仓增删改查
---
hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/mapper/RegionInspectionRecordMapper.java | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/mapper/RegionInspectionRecordMapper.java b/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/mapper/RegionInspectionRecordMapper.java
index 681d6b9..824202b 100644
--- a/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/mapper/RegionInspectionRecordMapper.java
+++ b/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/mapper/RegionInspectionRecordMapper.java
@@ -24,9 +24,10 @@
void delete(String id);
//根据任务id删除记录
void deleteByRegionInspectionId(String regionInspectionId);
+
//任务打卡web端查询列表 或者 判断主任务完成未完成的标准
List<RegionInspectionRecordEntity> selectPageList(Map map);
-
+ Integer selectCount(Map map);
//通过任务id查询打卡详情#{regionInspectionId} and b.user_id = #{userId}
RegionInspectionEntity selectInfo(
@Param("regionInspectionId") String regionInspectionId,
@@ -40,7 +41,14 @@
@Param("regionHazardInformId")String regionHazardInformId);
void insertIMG(RegionInspectionRecordImgEntity regionInspectionRecordImgEntity);
+ void deleteIMG(String regionInspectionRecordId);
+
+ List<RegionInspectionRecordImgEntity> selectImgByRecordId(String regionInspectionRecordId);
+
//小程序巡检打卡列表
List<Map> selectAppList(Map map);
+
+ String selectPlatUserId(String userId);
+ Map getPlatUser(String platUserId);
}
--
Gitblit v1.9.3