Files
mosty-dyga-cloud/mosty-yjzl/src/main/java/com/mosty/yjzl/mapper/TbYjxxYjczjlMapper.java

28 lines
572 B
Java
Raw Normal View History

2024-07-17 21:00:42 +08:00
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;
/**
* <p>
* 预警信息-操作记录表 Mapper 接口
* </p>
*
* @author zengbo
* @since 2022-07-19
*/
@Mapper
public interface TbYjxxYjczjlMapper extends BaseMapper<TbYjxxYjczjl> {
/**
* 删除盘查人员车辆
* @param list
*/
int deleteByIds(@Param("list") List<String> list);
}