| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.RawInsProduct; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author zss |
| | | * @since 2023-08-01 13:52:30 |
| | | */ |
| | | public interface RawInsProductMapper extends BaseMapper<RawInsProduct> { |
| | | public interface RawInsProductMapper extends MyBaseMapper<RawInsProduct> { |
| | | |
| | | |
| | | //根据原材料检验单id查询检验项目 |
| | | List<Integer> getresult(Integer id); |
| | | |
| | | //根据原材料检验单id删除 |
| | | void updaRawInsById(Integer id); |
| | | |
| | | //根据原材料检验单id批量删除原材料检验项目 |
| | | void delAllRawIns(String ids); |
| | | //批量清空检验值 |
| | | void updateBatch(List<RawInsProduct> rawInsProductList); |
| | | } |
| | | |