乐天mes后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. package com.letian.modules.base.dao;
  2. import com.letian.modules.base.entity.*;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. @Mapper
  7. public interface BoardDao {
  8. List<NewScheduledData> getNewScheduledTableList(String date);
  9. /**
  10. *@Description 获取看板刷新时间
  11. * @Title getRefreshTime
  12. * @author rq
  13. * @date 2020/11/17 15:39
  14. * @return {@link Object}
  15. * @throw
  16. */
  17. List<BoardConfigData> getRefreshTimeDefault(String boardName);
  18. PieBoardData getNewScheduledPieList(String date);
  19. List<NewScheduledData> getNewScheduledBarList(String date);
  20. /**
  21. * @Description 这周发货看板
  22. * @Title getWeekShipmentBoardData
  23. * @param
  24. * @author rq
  25. * @date 2021/8/25 15:37
  26. * @return List<ViewKanbanCODelNotifyData>
  27. * @throw
  28. */
  29. List<DelNotifyBoardData> getDelNotifyBoardData(@Param("startDate") String startDate, @Param("endDate") String endDate);
  30. List<ScheduleListBoardData> getScheduleListData(String date);
  31. }