ISignInService.java
1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.ruoyi.in.service;
import java.io.IOException;
import java.util.List;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.exception.file.FileUploadException;
import com.ruoyi.in.domain.SignIn;
import com.ruoyi.pojo.response.SignInResponseVo;
import javax.servlet.http.HttpServletRequest;
/**
* 签到Service接口
*
* @author guzijian
* @date 2023-07-05
*/
public interface ISignInService
{
/**
* 查询签到
*
* @param id 签到主键
* @return 签到
*/
public SignIn selectSignInById(Long id);
/**
* 查询签到列表
*
* @param signIn 签到
* @return 签到集合
*/
public List<SignInResponseVo> selectSignInList(SignInResponseVo signIn);
/**
* 修改签到
*
* @param signIn 签到
* @return 结果
*/
public int updateSignIn(SignIn signIn);
/**
* 批量删除签到
*
* @param ids 需要删除的签到主键集合
* @return 结果
*/
public int deleteSignInByIds(Long[] ids);
/**
* 删除签到信息
*
* @param id 签到主键
* @return 结果
*/
public int deleteSignInById(Long id);
/**
* 设备签到
* @param signIn
* @return
*/
AjaxResult addSignIn(SignIn signIn) throws FileUploadException, IOException;
String repairSignRecord(HttpServletRequest request);
String repairAllSignRecord(HttpServletRequest request,String date);
AjaxResult supplementarySignature(SignIn signIn);
List<SignInResponseVo> selectSignInByIds(List<Long> collect);
}