Files
HRS/SMMS/src/com/chinasofti/service/CreditRecordsService.java
2026-04-01 07:43:05 +08:00

74 lines
2.0 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Copyright © 2025 eSunny Info. Tech Ltd. All rights reserved.
*
* 功能描述:
* @Package: com.chinasofti.service
* @author: 李洪涛
* @date: 2025年5月15日 下午1:37:53
*/
package com.chinasofti.service;
import java.util.List;
import com.chinasofti.model.CreditRecords;
import com.chinasofti.model.view.Page;
/**
* Copyright: Copyright (c) 2025 chiansofti
*
* @ClassName: CreditRecordsService.java
* @Description: 学分记录信息业务层
*
* @version: v1.0.0
* @author: 李洪涛
* @date: 2025年5月15日 下午1:37:53
*
* Modification History:
* Date Author Version Description
*---------------------------------------------------------*
* 2025年5月15日 李洪涛 v1.0.0 新建文件
*/
public interface CreditRecordsService {
/**
*
* @Function: insertCreditRecords
* @Description: 添加
*
* @param: 学分实体
* @return
* @throws
*
* @version: v1.0.0
* @author: 李洪涛
* @date: 2025年4月6日 上午10:50:58
*
* Modification History:
* Date Author Version Description
*---------------------------------------------------------*
* 2025年4月6日 李洪涛 v1.0.0 新建方法
*/
public void insertCreditRecords(Long studentId,CreditRecords creditRecords);
/**
*
* @Function: findCreditRecordsPages
* @Description: 查询所有记录
*
* @param: 请假记录实体
* @return请假记录实体集合
* @throws
*
* @version: v1.0.0
* @author: 李洪涛
* @date: 2025年4月6日 上午10:50:58
*
* Modification History:
* Date Author Version Description
*---------------------------------------------------------*
* 2025年4月6日 李洪涛 v1.0.0 新建方法
*/
public List<CreditRecords> findCreditRecordsPages(String startTime,String endTime,CreditRecords creditRecords,String clazzIds,Page page);
}