IntelligentRecognition/ah-jjsp-service/.svn/pristine/39/39129af94134dec09ebf17f38fe...

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.JjZbhPhone;
import java.util.List;
/**
* 站班会图片表(JjZbhPhone)表数据库访问层
*
* @author makejava
* @since 2022-12-06 14:31:54
*/
public interface JjZbhPhoneMapper {
/**
* 通过ID查询单条数据
*
* @param id 主键
* @return 实例对象
*/
JjZbhPhone queryById(String id);
/**
* 分页查询
*
* @param jjZbhPhone 查询条件
* @return 实例对象
*/
List<JjZbhPhone> queryByPage(JjZbhPhone jjZbhPhone);
/**
* 新增数据
*
* @param jjZbhPhone 实例对象
* @return 影响行数
*/
int insert(JjZbhPhone jjZbhPhone);
/**
* 批量新增数据MyBatis原生foreach方法
*
* @param entities List<JjZbhPhone> 实例对象列表
* @return 影响行数
*/
int insertBatch(List<JjZbhPhone> entities);
/**
* 修改数据
*
* @param jjZbhPhone 实例对象
* @return 影响行数
*/
int update(JjZbhPhone jjZbhPhone);
/**
* 通过主键删除数据
*
* @param id 主键
* @return 影响行数
*/
int deleteById(String id);
}