| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MdcProcessQuantityDto; |
| | | import org.jeecg.modules.mdc.entity.MdcStandardProcessDuration; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 标准加工时间表 |
| | | * @Description: 标准加工时间 |
| | | * @Author: Lius |
| | | * @Date: 2023-07-17 |
| | | * @Date: 2024-07-08 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface MdcStandardProcessDurationMapper extends BaseMapper<MdcStandardProcessDuration> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param page |
| | | * @param mdcStandardProcessDuration |
| | | * @return |
| | | */ |
| | | IPage<MdcStandardProcessDuration> pageList(Page<MdcStandardProcessDuration> page, @Param("mdcStandardProcessDuration") MdcStandardProcessDuration mdcStandardProcessDuration); |
| | | |
| | | List<MdcProcessQuantityDto> findByEquipmentId(@Param("equipmentId") String equipmentId, @Param("validDate") String validDate); |
| | | } |