Files
klp-oa/klp-aps/src/main/java/com/klp/aps/service/ApsGanttService.java

15 lines
380 B
Java
Raw Normal View History

2026-03-08 16:02:44 +08:00
package com.klp.aps.service;
import com.klp.aps.domain.dto.ApsGanttQueryReq;
import com.klp.aps.domain.vo.ApsFactoryCalendarRespVo;
import com.klp.aps.domain.vo.ApsGanttItemVo;
import java.util.List;
public interface ApsGanttService {
List<ApsGanttItemVo> selectGanttItems(ApsGanttQueryReq req);
ApsFactoryCalendarRespVo queryFactoryCalendar(ApsGanttQueryReq req);
}