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.
18 lines
450 B
Java
18 lines
450 B
Java
3 years ago
|
package com.glxp.api.service.auth;
|
||
|
|
||
|
import com.glxp.api.entity.auth.AuthCheckEntity;
|
||
|
import com.glxp.api.req.auth.AuthCheckRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface AuthCheckService {
|
||
|
|
||
|
AuthCheckEntity findByMachine(String machineInfo);
|
||
|
|
||
|
List<AuthCheckEntity> filterDevices(AuthCheckRequest authCheckRequest);
|
||
|
|
||
|
boolean insertDevices(AuthCheckEntity authCheckEntity);
|
||
|
|
||
|
boolean updateDevices(AuthCheckEntity authCheckEntity);
|
||
|
}
|