From 21caf8ad8e7d24c3bbf7cf4a90c35f51851fd6cb Mon Sep 17 00:00:00 2001 From: lius <Lius2225@163.com> Date: 星期一, 21 八月 2023 16:57:25 +0800 Subject: [PATCH] 设备权限接口更新 --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcDeviceCalendarMapper.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcDeviceCalendarMapper.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcDeviceCalendarMapper.java index 4fe2636..4c332a2 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcDeviceCalendarMapper.java +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcDeviceCalendarMapper.java @@ -7,6 +7,9 @@ import org.jeecg.modules.mdc.vo.MdcDeviceCalendarQueryVo; import org.jeecg.modules.mdc.vo.MdcDeviceCalendarVo; +import java.util.Date; +import java.util.List; + /** * @Description: 璁惧宸ヤ綔鏃ュ巻琛� * @Author: jeecg-boot @@ -16,4 +19,9 @@ public interface MdcDeviceCalendarMapper extends BaseMapper<MdcDeviceCalendar> { IPage<MdcDeviceCalendarVo> pageList(IPage<MdcDeviceCalendarVo> pageData, @Param("deviceCalendar") MdcDeviceCalendarQueryVo mdcDeviceCalendarQueryVo); + + List<MdcDeviceCalendarVo> listByEquipmentAndDate(@Param("equipmentId") String equipmentId, @Param("stringDate") String stringDate); + + List<MdcDeviceCalendarVo> findAcquiesceShift(); + } -- Gitblit v1.9.3