WcBlackoutPlanMapper.java 1006 B

12345678910111213141516171819202122232425262728
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.common.mvc.base.CrudMapper;
  3. import com.bizmatics.model.WcBlackoutPlan;
  4. import com.bizmatics.model.vo.WcBlackoutPlanVo;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * Mapper 接口
  11. * </p>
  12. *
  13. * @author ya
  14. * @since 2021-07-07
  15. */
  16. public interface WcBlackoutPlanMapper extends CrudMapper<WcBlackoutPlan> {
  17. List<WcBlackoutPlanVo> plannedOutageList(@Param("startTime") String startTime,
  18. @Param("endTime") String endTime,
  19. @Param("type") Integer type,
  20. @Param("id") Integer id,
  21. @Param("size") Integer size,
  22. @Param("startCurrent") Integer startCurrent,
  23. @Param("userId") Long userId);
  24. }