package com.thhy.staff.modules.biz.face.mapper;
|
|
import com.thhy.staff.modules.biz.face.entity.FaceDevice;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-10-12 10:27:42
|
*/
|
@Component
|
public interface FaceDeviceMapper {
|
|
|
FaceDevice queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<FaceDevice> findList(FaceDevice facedevice);
|
|
List<FaceDevice> findAll();
|
|
int countByDevSn(String devSn);
|
|
void insert(FaceDevice facedevice);
|
|
void update(FaceDevice facedevice);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
}
|