You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
879 B
Java
29 lines
879 B
Java
1 year ago
|
package com.supervision.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||
|
import com.supervision.domain.IrSession;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.supervision.domain.IrSessionHistory;
|
||
|
import com.supervision.vo.session.FinishSessionVO;
|
||
|
|
||
|
import javax.validation.constraints.NotBlank;
|
||
|
import java.math.BigDecimal;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author flevance
|
||
|
* @description 针对表【ir_session(会话表)】的数据库操作Service
|
||
|
* @createDate 2024-03-21 13:14:43
|
||
|
*/
|
||
|
public interface IrSessionService extends IService<IrSession> {
|
||
|
|
||
|
IrSession createNewSession(String caseNumber, Integer type, BigDecimal speed);
|
||
|
|
||
|
IPage<IrSession> querySessionPage(Integer pageSize, Integer pageNum);
|
||
|
|
||
|
void finishSession(FinishSessionVO finishSessionVO);
|
||
|
|
||
|
List<IrSessionHistory> querySessionHistory(String sessionId);
|
||
|
|
||
|
}
|