package com.mosty.yjzl.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.mosty.base.model.entity.yjzl.TbYjxxYjczjl; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* 预警信息-操作记录表 Mapper 接口 *

* * @author zengbo * @since 2022-07-19 */ @Mapper public interface TbYjxxYjczjlMapper extends BaseMapper { /** * 删除盘查人员车辆 * @param list */ int deleteByIds(@Param("list") List list); }