IntelligentRecognition/ah-jjsp-service/.svn/pristine/e4/e45c61bdc8b4e0758278287272c...

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