From 897778793c8e2f9fc046ca210fb88d1b6d82b457 Mon Sep 17 00:00:00 2001 From: clunt Date: Wed, 27 Apr 2022 11:28:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E7=BA=A7=E5=88=86=E9=94=80service/dao?= =?UTF-8?q?=E5=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../customer/mapper/CustomerPlaceMapper.java | 11 ++++++++++ .../service/CustomerPlaceService.java | 15 ++++++++++++++ .../impl/CustomerPlaceServiceImpl.java | 15 ++++++++++++++ .../mapper.customer/CustomerPlaceMapper.xml | 20 +++++++++++++++++++ 4 files changed, 61 insertions(+) create mode 100644 ghy-custom/src/main/java/com/ghy/customer/mapper/CustomerPlaceMapper.java create mode 100644 ghy-custom/src/main/java/com/ghy/customer/service/CustomerPlaceService.java create mode 100644 ghy-custom/src/main/java/com/ghy/customer/service/impl/CustomerPlaceServiceImpl.java create mode 100644 ghy-custom/src/main/resources/mapper.customer/CustomerPlaceMapper.xml diff --git a/ghy-custom/src/main/java/com/ghy/customer/mapper/CustomerPlaceMapper.java b/ghy-custom/src/main/java/com/ghy/customer/mapper/CustomerPlaceMapper.java new file mode 100644 index 00000000..0ca4876f --- /dev/null +++ b/ghy-custom/src/main/java/com/ghy/customer/mapper/CustomerPlaceMapper.java @@ -0,0 +1,11 @@ +package com.ghy.customer.mapper; + +/** + * @author clunt + * 多级分销接口类 + */ +public interface CustomerPlaceMapper { + + + +} diff --git a/ghy-custom/src/main/java/com/ghy/customer/service/CustomerPlaceService.java b/ghy-custom/src/main/java/com/ghy/customer/service/CustomerPlaceService.java new file mode 100644 index 00000000..2bdb5dc2 --- /dev/null +++ b/ghy-custom/src/main/java/com/ghy/customer/service/CustomerPlaceService.java @@ -0,0 +1,15 @@ +package com.ghy.customer.service; + +/** + * @author clunt + * 多级分销 + */ +public interface CustomerPlaceService { + + // 新增分销用户 + + // 获取用户分销关系 + + // 设置分销比例 + +} diff --git a/ghy-custom/src/main/java/com/ghy/customer/service/impl/CustomerPlaceServiceImpl.java b/ghy-custom/src/main/java/com/ghy/customer/service/impl/CustomerPlaceServiceImpl.java new file mode 100644 index 00000000..095f6067 --- /dev/null +++ b/ghy-custom/src/main/java/com/ghy/customer/service/impl/CustomerPlaceServiceImpl.java @@ -0,0 +1,15 @@ +package com.ghy.customer.service.impl; + +import com.ghy.customer.service.CustomerPlaceService; +import org.springframework.stereotype.Service; + +/** + * @author clunt + * 多级分销实现类 + */ +@Service +public class CustomerPlaceServiceImpl implements CustomerPlaceService { + + + +} diff --git a/ghy-custom/src/main/resources/mapper.customer/CustomerPlaceMapper.xml b/ghy-custom/src/main/resources/mapper.customer/CustomerPlaceMapper.xml new file mode 100644 index 00000000..bf4025b9 --- /dev/null +++ b/ghy-custom/src/main/resources/mapper.customer/CustomerPlaceMapper.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file