| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MdcProcessQuantityDto; |
| | | import org.jeecg.modules.mdc.entity.MdcProcessQuantity; |
| | | import org.jeecg.modules.mdc.vo.MdcProcessQuantityVo; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | IPage<MdcProcessQuantityDto> pageList(Page<MdcProcessQuantityDto> page, @Param("mdcProcessQuantity") MdcProcessQuantity mdcProcessQuantity); |
| | | IPage<MdcProcessQuantityDto> pageList(Page<MdcProcessQuantityDto> page, @Param("mdcProcessQuantity") MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 导出数据 |
| | |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | List<MdcProcessQuantityDto> list(@Param("mdcProcessQuantity") MdcProcessQuantity mdcProcessQuantity); |
| | | List<MdcProcessQuantityDto> list(@Param("mdcProcessQuantity") MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 根据id查询 |
| | |
| | | */ |
| | | MdcProcessQuantityDto findById(@Param("id") String id); |
| | | |
| | | /** |
| | | * @param equipmentId |
| | | * @param validDate |
| | | * @return |
| | | */ |
| | | List<MdcProcessQuantityDto> findList(@Param("equipmentId") String equipmentId, @Param("validDate") String validDate); |
| | | |
| | | } |