| | |
| | | import cn.iocoder.yudao.module.mes.dal.dataobject.qc.ipqc.MesQcIpqcLineDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * MES 过程检验单行 Mapper |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | @Mapper |
| | | public interface MesQcIpqcLineMapper extends BaseMapperX<MesQcIpqcLineDO> { |
| | |
| | | return selectList(MesQcIpqcLineDO::getIpqcId, ipqcId); |
| | | } |
| | | |
| | | default List<MesQcIpqcLineDO> selectListByIpqcIds(Collection<Long> ipqcIds) { |
| | | return selectList(new LambdaQueryWrapperX<MesQcIpqcLineDO>() |
| | | .in(MesQcIpqcLineDO::getIpqcId, ipqcIds) |
| | | .orderByAsc(MesQcIpqcLineDO::getId)); |
| | | } |
| | | |
| | | default void deleteByIpqcId(Long ipqcId) { |
| | | delete(new LambdaQueryWrapperX<MesQcIpqcLineDO>() |
| | | .eq(MesQcIpqcLineDO::getIpqcId, ipqcId)); |