From 37f8463032c06236bfd098133c31cda51217b00f Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Wed, 09 Oct 2024 23:08:37 +0800
Subject: [PATCH] 数据中心编号处理

---
 cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcDraftsMapper.java |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcDraftsMapper.java b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcDraftsMapper.java
new file mode 100644
index 0000000..f881af2
--- /dev/null
+++ b/cpzidc-bis/src/main/java/com/odcc/cpzidc/bis/mapper/IdcDraftsMapper.java
@@ -0,0 +1,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);
+}

--
Gitblit v1.9.3