| | |
| | | import org.jeecg.modules.mdc.entity.MdcRepairInfo; |
| | | import org.jeecg.modules.mdc.vo.MdcRepairInfoVo; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @Description: 设备维修时长表 |
| | | * @Author: Lius |
| | |
| | | * @return |
| | | */ |
| | | IPage<MdcRepairInfo> pageList(Page<MdcRepairInfo> page, @Param("mdcRepairInfoVo") MdcRepairInfoVo mdcRepairInfoVo); |
| | | |
| | | /** |
| | | * 查询当月总维修时间 |
| | | * |
| | | * @param month |
| | | * @return |
| | | */ |
| | | BigDecimal findTotalRepairLong(@Param("month") String month); |
| | | |
| | | /** |
| | | * 查询当月总维修次数 |
| | | * |
| | | * @param month |
| | | * @return |
| | | */ |
| | | Integer findTotalRepairCount(@Param("month") String month); |
| | | } |