中国算力平台算力登记系统2.0
yanzhaofeige
5 days ago 37f8463032c06236bfd098133c31cda51217b00f
commit | author | age
3ef6ab 1 package com.odcc.cpzidc.bis.mapper;
Y 2
3 import java.util.List;
4 import com.odcc.cpzidc.bis.domain.IdcDrafts;
5
6 /**
7  * 草稿箱Mapper接口
8  * 
9  * @author ruoyi
10  * @date 2024-10-09
11  */
12 public interface IdcDraftsMapper 
13 {
14     /**
15      * 查询草稿箱
16      * 
17      * @param id 草稿箱主键
18      * @return 草稿箱
19      */
20     public IdcDrafts selectIdcDraftsById(Long id);
21
22     /**
23      * 查询草稿箱列表
24      * 
25      * @param idcDrafts 草稿箱
26      * @return 草稿箱集合
27      */
28     public List<IdcDrafts> selectIdcDraftsList(IdcDrafts idcDrafts);
29
30     /**
31      * 新增草稿箱
32      * 
33      * @param idcDrafts 草稿箱
34      * @return 结果
35      */
36     public int insertIdcDrafts(IdcDrafts idcDrafts);
37
38     /**
39      * 修改草稿箱
40      * 
41      * @param idcDrafts 草稿箱
42      * @return 结果
43      */
44     public int updateIdcDrafts(IdcDrafts idcDrafts);
45
46     /**
47      * 删除草稿箱
48      * 
49      * @param id 草稿箱主键
50      * @return 结果
51      */
52     public int deleteIdcDraftsById(Long id);
53
54     /**
55      * 批量删除草稿箱
56      * 
57      * @param ids 需要删除的数据主键集合
58      * @return 结果
59      */
60     public int deleteIdcDraftsByIds(Long[] ids);
61 }