qa-regulatory-wlaq/src/main/java/com/zcloud/service/bus/TrainingScheduleService.java

24 lines
411 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.service.bus;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
* 说明:培训日程安排通知
* 作者luoxiaobao
* 时间2021-12-20
* 官网www.zcloudchina.com
*/
public interface TrainingScheduleService {
/**列表(全部)
* @param pd
* @throws Exception
*/
List<PageData> listAll(PageData pd)throws Exception;
}