| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.yuanchu.mom.pojo.InsOrder; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.yuanchu.mom.dto.SampleOrderDto; |
| | | import com.yuanchu.mom.dto.SampleProductDto; |
| | | import com.yuanchu.mom.dto.SampleProductDto2; |
| | | import com.yuanchu.mom.pojo.InsOrder; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author gaoaoy |
| | | * @description 针对表【ins_order(检验下单)】的数据库操作Mapper |
| | | * @createDate 2024-03-07 16:07:54 |
| | | * @Entity com.yuanchu.mom.pojo.InsOrder |
| | | */ |
| | | * @author gaoaoy |
| | | * @description 针对表【ins_order(检验下单)】的数据库操作Mapper |
| | | * @createDate 2024-03-12 16:17:55 |
| | | * @Entity com.yuanchu.mom.pojo.InsOrder |
| | | */ |
| | | public interface InsOrderMapper extends BaseMapper<InsOrder> { |
| | | |
| | | //获取检验下单数据 |
| | | IPage<SampleOrderDto> selectInsOrderPage(IPage<InsOrder> page, QueryWrapper<SampleOrderDto> ew); |
| | | |
| | | //修改检验下单数据 |
| | | int upInsOrderParameter(InsOrder itemParameter); |
| | | |
| | | String getLaboratoryCode(String name); |
| | | |
| | | IPage<SampleProductDto2> selectSampleAndProductByOrderId(IPage<SampleProductDto2> page, QueryWrapper<SampleProductDto2> ew); |
| | | |
| | | } |
| | | |
| | | |