| | |
| | | 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 针对表【ins_product(检验项目)】的数据库操作Service实现 |
| | | * @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); |
| | | } |
| | | } |
| | | |
| | | |