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