qa-prevention-gwj/src/main/java/com/zcloud/service/bus/ClassInfoService.java

28 lines
420 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
* 时间2023-09-27
* 官网www.zcloudchina.com
*/
public interface ClassInfoService {
public PageData getClassinfo(PageData pd)throws Exception;
List<PageData> findinfoByCondition(PageData condition) throws Exception;
}