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.
|
|
package com.letian.modules.base.dao;
import com.letian.modules.base.entity.*;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapperpublic interface BoardDao {
List<NewScheduledData> getNewScheduledTableList(String date);
/** *@Description 获取看板刷新时间 * @Title getRefreshTime * @author rq * @date 2020/11/17 15:39 * @return {@link Object} * @throw */ List<BoardConfigData> getRefreshTimeDefault(String boardName);
PieBoardData getNewScheduledPieList(String date); List<NewScheduledData> getNewScheduledBarList(String date);
/** * @Description 这周发货看板 * @Title getWeekShipmentBoardData * @param * @author rq * @date 2021/8/25 15:37 * @return List<ViewKanbanCODelNotifyData> * @throw */ List<DelNotifyBoardData> getDelNotifyBoardData(@Param("startDate") String startDate, @Param("endDate") String endDate);
List<ScheduleListBoardData> getScheduleListData(String date);}
|