龚焕茏
2024-08-26 53696e317005ba4668fd1efc27cc49cbdfb8dbfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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);
}