| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | 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)); |