中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 3ef6abbd7a73bd464bfb24fd99f7f9956f2562ef
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
package com.odcc.cpzidc.bis.mapper;
 
import java.util.List;
import com.odcc.cpzidc.bis.domain.IdcDrafts;
 
/**
 * 草稿箱Mapper接口
 * 
 * @author ruoyi
 * @date 2024-10-09
 */
public interface IdcDraftsMapper 
{
    /**
     * 查询草稿箱
     * 
     * @param id 草稿箱主键
     * @return 草稿箱
     */
    public IdcDrafts selectIdcDraftsById(Long id);
 
    /**
     * 查询草稿箱列表
     * 
     * @param idcDrafts 草稿箱
     * @return 草稿箱集合
     */
    public List<IdcDrafts> selectIdcDraftsList(IdcDrafts idcDrafts);
 
    /**
     * 新增草稿箱
     * 
     * @param idcDrafts 草稿箱
     * @return 结果
     */
    public int insertIdcDrafts(IdcDrafts idcDrafts);
 
    /**
     * 修改草稿箱
     * 
     * @param idcDrafts 草稿箱
     * @return 结果
     */
    public int updateIdcDrafts(IdcDrafts idcDrafts);
 
    /**
     * 删除草稿箱
     * 
     * @param id 草稿箱主键
     * @return 结果
     */
    public int deleteIdcDraftsById(Long id);
 
    /**
     * 批量删除草稿箱
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteIdcDraftsByIds(Long[] ids);
}