15 lines
380 B
Java
15 lines
380 B
Java
|
|
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);
|
||
|
|
}
|
||
|
|
|