新购模块
This commit is contained in:
parent
6f16907941
commit
62246c0c93
|
|
@ -4,5 +4,5 @@ package com.bonus.purchase.controller;
|
||||||
* @Author ma_sh
|
* @Author ma_sh
|
||||||
* @create 2024/8/19 16:13
|
* @create 2024/8/19 16:13
|
||||||
*/
|
*/
|
||||||
public class PurchaseController {
|
public class PurchaseAcceptController {
|
||||||
}
|
}
|
||||||
|
|
@ -4,5 +4,5 @@ package com.bonus.purchase.mapper;
|
||||||
* @Author ma_sh
|
* @Author ma_sh
|
||||||
* @create 2024/8/19 16:13
|
* @create 2024/8/19 16:13
|
||||||
*/
|
*/
|
||||||
public interface PurchaseMapper {
|
public interface PurchaseAcceptMapper {
|
||||||
}
|
}
|
||||||
|
|
@ -4,5 +4,5 @@ package com.bonus.purchase.service;
|
||||||
* @Author ma_sh
|
* @Author ma_sh
|
||||||
* @create 2024/8/19 16:13
|
* @create 2024/8/19 16:13
|
||||||
*/
|
*/
|
||||||
public interface PurchaseService {
|
public interface PurchaseAcceptService {
|
||||||
}
|
}
|
||||||
|
|
@ -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 {
|
||||||
|
}
|
||||||
|
|
@ -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 {
|
|
||||||
}
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.bonus.purchase.mapper.PurchaseMapper">
|
<mapper namespace="com.bonus.purchase.mapper.PurchaseAcceptMapper">
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
Loading…
Reference in New Issue