74 lines
2.0 KiB
Java
74 lines
2.0 KiB
Java
|
|
/**
|
|||
|
|
* 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);
|
|||
|
|
|
|||
|
|
}
|