2024-11-29 15:36:54 +08:00

25 lines
763 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ycwl.basic.mapper.pc;
import com.ycwl.basic.model.pc.device.entity.DeviceEntity;
import com.ycwl.basic.model.pc.device.req.DeviceReqQuery;
import com.ycwl.basic.model.pc.device.resp.DeviceRespVO;
import com.ycwl.basic.model.pc.face.entity.FaceEntity;
import com.ycwl.basic.model.pc.face.req.FaceReqQuery;
import com.ycwl.basic.model.pc.face.resp.FaceRespVO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Authorlongbinbin
* @Date2024/11/29 15:09
*/
public interface FaceMapper {
List<FaceRespVO> list(FaceReqQuery faceReqQuery);
FaceRespVO getById(Long id);
int add(FaceEntity device);
int deleteById(Long id);
int deleteByIds(@Param("list") Long ids);
int update(DeviceEntity device);
}