package com.ycl.platform.mapper;
|
|
import com.ycl.platform.domain.entity.ImageResourceSecurity;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* platformMapper接口
|
*
|
* @author flq
|
* @date 2024-08-24
|
*/
|
public interface ImageResourceSecurityMapper
|
{
|
/**
|
* 查询platform
|
*
|
* @param id platform主键
|
* @return platform
|
*/
|
public ImageResourceSecurity selectImageResourceSecurityById(Long id);
|
|
/**
|
* 查询platform列表
|
*
|
* @param imageResourceSecurity platform
|
* @return platform集合
|
*/
|
public List<ImageResourceSecurity> selectImageResourceSecurityList(ImageResourceSecurity imageResourceSecurity);
|
|
/**
|
* 新增platform
|
*
|
* @param imageResourceSecurity platform
|
* @return 结果
|
*/
|
public int insertImageResourceSecurity(ImageResourceSecurity imageResourceSecurity);
|
|
/**
|
* 修改platform
|
*
|
* @param imageResourceSecurity platform
|
* @return 结果
|
*/
|
public int updateImageResourceSecurity(ImageResourceSecurity imageResourceSecurity);
|
|
/**
|
* 删除platform
|
*
|
* @param id platform主键
|
* @return 结果
|
*/
|
public int deleteImageResourceSecurityById(Long id);
|
|
/**
|
* 批量删除platform
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteImageResourceSecurityByIds(Long[] ids);
|
|
/**
|
* 批量保存
|
* @param imageResourceSecurities 数据集合
|
*/
|
void saveBatch(ArrayList<ImageResourceSecurity> imageResourceSecurities);
|
}
|