新购模块

This commit is contained in:
mashuai 2024-08-19 16:51:39 +08:00
parent 6f16907941
commit 62246c0c93
6 changed files with 16 additions and 14 deletions

View File

@ -4,5 +4,5 @@ package com.bonus.purchase.controller;
* @Author ma_sh
* @create 2024/8/19 16:13
*/
public class PurchaseController {
public class PurchaseAcceptController {
}

View File

@ -4,5 +4,5 @@ package com.bonus.purchase.mapper;
* @Author ma_sh
* @create 2024/8/19 16:13
*/
public interface PurchaseMapper {
public interface PurchaseAcceptMapper {
}

View File

@ -4,5 +4,5 @@ package com.bonus.purchase.service;
* @Author ma_sh
* @create 2024/8/19 16:13
*/
public interface PurchaseService {
public interface PurchaseAcceptService {
}

View File

@ -0,0 +1,12 @@
package com.bonus.purchase.service.impl;
import com.bonus.purchase.service.PurchaseAcceptService;
import org.springframework.stereotype.Service;
/**
* @Author ma_sh
* @create 2024/8/19 16:48
*/
@Service
public class PurchaseAcceptServiceImpl implements PurchaseAcceptService {
}

View File

@ -1,10 +0,0 @@
package com.bonus.purchase.service.impl;
import com.bonus.purchase.service.PurchaseService;
/**
* @Author ma_sh
* @create 2024/8/19 16:13
*/
public class PurchaseServiceImpl implements PurchaseService {
}

View File

@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.bonus.purchase.mapper.PurchaseMapper">
<mapper namespace="com.bonus.purchase.mapper.PurchaseAcceptMapper">
</mapper>