2024-01-19 17:45:39 +08:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
2024-07-30 16:11:51 +08:00
|
|
|
|
List<PageData> getCountGroupByCorpInfoId(PageData pd);
|
2024-01-19 17:45:39 +08:00
|
|
|
|
}
|
|
|
|
|
|