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