IntelligentRecognition/ah-jjsp-service/.svn/pristine/1e/1e658fa89d8d17a01a1b4843c4c...

65 lines
1.2 KiB
Plaintext
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.sercurityControl.decision.mapper;
import com.sercurityControl.decision.domain.JjZbh;
import java.util.List;
/**
* e基建同步的站会会表(JjZbh)表数据库访问层
*
* @author makejava
* @since 2022-12-06 14:31:54
*/
public interface JjZbhMapper {
/**
* 通过ID查询单条数据
*
* @param id 主键
* @return 实例对象
*/
JjZbh queryById(String id);
/**
* 分页查询
*
* @param jjZbh 查询条件
* @return 实例对象
*/
List<JjZbh> queryByPage(JjZbh jjZbh);
/**
* 新增数据
*
* @param jjZbh 实例对象
* @return 影响行数
*/
int insert(JjZbh jjZbh);
/**
* 批量新增数据MyBatis原生foreach方法
*
* @param entities List<JjZbh> 实例对象列表
* @return 影响行数
*/
int insertBatch(List<JjZbh> entities);
/**
* 修改数据
*
* @param jjZbh 实例对象
* @return 影响行数
*/
int update(JjZbh jjZbh);
/**
* 通过主键删除数据
*
* @param id 主键
* @return 影响行数
*/
int deleteById(String id);
}