From 79f7e11918c05d627ed66f78e8aaabb7ab1f208b Mon Sep 17 00:00:00 2001 From: weizhiqiang <598748873@qq.com> Date: Fri, 26 Nov 2021 22:49:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E6=94=B6=E6=94=AF=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E4=BB=A3=E7=A0=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/skyeye/dao/InoutitemDao.java | 40 ------------------- .../main/resources/reqmapping/mapping/erp.xml | 33 --------------- .../controller/InoutitemController.java | 0 .../java/com/skyeye/dao/InoutitemDao.java | 40 +++++++++++++++++++ .../com/skyeye/service/InoutitemService.java | 0 .../service/impl/InoutitemServiceImpl.java | 0 .../resources/mapper/ifs}/InoutitemMapper.xml | 0 .../main/resources/reqmapping/mapping/ifs.xml | 33 +++++++++++++++ 8 files changed, 73 insertions(+), 73 deletions(-) delete mode 100644 skyeye-erp/src/main/java/com/skyeye/dao/InoutitemDao.java rename {skyeye-erp => skyeye-ifs}/src/main/java/com/skyeye/controller/InoutitemController.java (100%) create mode 100644 skyeye-ifs/src/main/java/com/skyeye/dao/InoutitemDao.java rename {skyeye-erp => skyeye-ifs}/src/main/java/com/skyeye/service/InoutitemService.java (100%) rename {skyeye-erp => skyeye-ifs}/src/main/java/com/skyeye/service/impl/InoutitemServiceImpl.java (100%) rename {skyeye-erp/src/main/resources/mapper/erp => skyeye-ifs/src/main/resources/mapper/ifs}/InoutitemMapper.xml (100%) diff --git a/skyeye-erp/src/main/java/com/skyeye/dao/InoutitemDao.java b/skyeye-erp/src/main/java/com/skyeye/dao/InoutitemDao.java deleted file mode 100644 index 022d64626..000000000 --- a/skyeye-erp/src/main/java/com/skyeye/dao/InoutitemDao.java +++ /dev/null @@ -1,40 +0,0 @@ -/******************************************************************************* - * Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved. 开源地址:https://gitee.com/doc_wei01/skyeye - ******************************************************************************/ - -package com.skyeye.dao; - -import java.util.List; -import java.util.Map; - -/** - * - * @ClassName: InoutitemDao - * @Description: 收支项目信息管理数据层 - * @author: skyeye云系列--卫志强 - * @date: 2021/8/7 22:28 - * - * @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. - * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 - */ -public interface InoutitemDao { - - public List> queryInoutitemByList(Map params) throws Exception; - - public Map queryInoutitemByName(Map params) throws Exception; - - public int insertInoutitem(Map params) throws Exception; - - public Map queryInoutitemById(Map params) throws Exception; - - public int editInoutitemByDeleteFlag(Map params) throws Exception; - - public Map queryInoutitemByIdAndName(Map params) throws Exception; - - public int editInoutitemById(Map params) throws Exception; - - public Map queryInoutitemByIdAndInfo(Map params) throws Exception; - - public List> queryInoutitemListToSelect(Map params) throws Exception; - -} diff --git a/skyeye-erp/src/main/resources/reqmapping/mapping/erp.xml b/skyeye-erp/src/main/resources/reqmapping/mapping/erp.xml index 9da4af2b6..56e8f9770 100644 --- a/skyeye-erp/src/main/resources/reqmapping/mapping/erp.xml +++ b/skyeye-erp/src/main/resources/reqmapping/mapping/erp.xml @@ -1099,39 +1099,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/skyeye-erp/src/main/java/com/skyeye/controller/InoutitemController.java b/skyeye-ifs/src/main/java/com/skyeye/controller/InoutitemController.java similarity index 100% rename from skyeye-erp/src/main/java/com/skyeye/controller/InoutitemController.java rename to skyeye-ifs/src/main/java/com/skyeye/controller/InoutitemController.java diff --git a/skyeye-ifs/src/main/java/com/skyeye/dao/InoutitemDao.java b/skyeye-ifs/src/main/java/com/skyeye/dao/InoutitemDao.java new file mode 100644 index 000000000..70e41de95 --- /dev/null +++ b/skyeye-ifs/src/main/java/com/skyeye/dao/InoutitemDao.java @@ -0,0 +1,40 @@ +/******************************************************************************* + * Copyright 卫志强 QQ:598748873@qq.com Inc. All rights reserved. 开源地址:https://gitee.com/doc_wei01/skyeye + ******************************************************************************/ + +package com.skyeye.dao; + +import java.util.List; +import java.util.Map; + +/** + * + * @ClassName: InoutitemDao + * @Description: 收支项目信息管理数据层 + * @author: skyeye云系列--卫志强 + * @date: 2021/8/7 22:28 + * + * @Copyright: 2021 https://gitee.com/doc_wei01/skyeye Inc. All rights reserved. + * 注意:本内容仅限购买后使用.禁止私自外泄以及用于其他的商业目的 + */ +public interface InoutitemDao { + + List> queryInoutitemByList(Map params) throws Exception; + + Map queryInoutitemByName(Map params) throws Exception; + + int insertInoutitem(Map params) throws Exception; + + Map queryInoutitemById(Map params) throws Exception; + + int editInoutitemByDeleteFlag(Map params) throws Exception; + + Map queryInoutitemByIdAndName(Map params) throws Exception; + + int editInoutitemById(Map params) throws Exception; + + Map queryInoutitemByIdAndInfo(Map params) throws Exception; + + List> queryInoutitemListToSelect(Map params) throws Exception; + +} diff --git a/skyeye-erp/src/main/java/com/skyeye/service/InoutitemService.java b/skyeye-ifs/src/main/java/com/skyeye/service/InoutitemService.java similarity index 100% rename from skyeye-erp/src/main/java/com/skyeye/service/InoutitemService.java rename to skyeye-ifs/src/main/java/com/skyeye/service/InoutitemService.java diff --git a/skyeye-erp/src/main/java/com/skyeye/service/impl/InoutitemServiceImpl.java b/skyeye-ifs/src/main/java/com/skyeye/service/impl/InoutitemServiceImpl.java similarity index 100% rename from skyeye-erp/src/main/java/com/skyeye/service/impl/InoutitemServiceImpl.java rename to skyeye-ifs/src/main/java/com/skyeye/service/impl/InoutitemServiceImpl.java diff --git a/skyeye-erp/src/main/resources/mapper/erp/InoutitemMapper.xml b/skyeye-ifs/src/main/resources/mapper/ifs/InoutitemMapper.xml similarity index 100% rename from skyeye-erp/src/main/resources/mapper/erp/InoutitemMapper.xml rename to skyeye-ifs/src/main/resources/mapper/ifs/InoutitemMapper.xml diff --git a/skyeye-ifs/src/main/resources/reqmapping/mapping/ifs.xml b/skyeye-ifs/src/main/resources/reqmapping/mapping/ifs.xml index ba69fc20b..23cc7457a 100644 --- a/skyeye-ifs/src/main/resources/reqmapping/mapping/ifs.xml +++ b/skyeye-ifs/src/main/resources/reqmapping/mapping/ifs.xml @@ -335,4 +335,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- GitLab