value
2024-05-08 4430c26482f219b1313fdf916d58dc8a8bd1cbfe
inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsProductServiceImpl.java
对比新文件
@@ -0,0 +1,25 @@
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 lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
@Service
@AllArgsConstructor
public class InsProductServiceImpl extends ServiceImpl<InsProductMapper, InsProduct>
      implements InsProductService {
   private InsProductMapper insProductMapper;
   @Override
   public int selectOrderManDay(Integer orderId) {
      return insProductMapper.selectOrderManDay(orderId);
   }
}