From c7e24959364e65e6632e71546d607433560bb403 Mon Sep 17 00:00:00 2001 From: 李林 <z1292839451@163.com> Date: 星期六, 06 四月 2024 17:46:30 +0800 Subject: [PATCH] 检验任务的缺漏代码 --- inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java | 17 ++++++++++------- 1 files changed, 10 insertions(+), 7 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java index e383fa7..d3a347f 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java @@ -1,20 +1,23 @@ package com.yuanchu.mom.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.yuanchu.mom.mapper.InsProductMapper; import com.yuanchu.mom.pojo.InsProduct; import com.yuanchu.mom.service.InsProductService; -import com.yuanchu.mom.mapper.InsProductMapper; +import lombok.AllArgsConstructor; import org.springframework.stereotype.Service; -/** -* @author Administrator -* @description 閽堝琛ㄣ�恑ns_product(妫�楠岄」鐩�)銆戠殑鏁版嵁搴撴搷浣淪ervice瀹炵幇 -* @createDate 2024-03-08 09:45:03 -*/ @Service +@AllArgsConstructor public class InsProductServiceImpl extends ServiceImpl<InsProductMapper, InsProduct> - implements InsProductService{ + implements InsProductService { + private InsProductMapper insProductMapper; + + @Override + public int selectOrderManDay(Integer orderId) { + return insProductMapper.selectOrderManDay(orderId); + } } -- Gitblit v1.9.3