商品测试
parent
8e4e9c8527
commit
efea92eb26
|
@ -0,0 +1,8 @@
|
|||
package com.muyu.product.controller;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/5/8 下午5:11
|
||||
*/
|
||||
public class TestController {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.muyu.product.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/5/8 下午5:11
|
||||
*/
|
||||
@Mapper
|
||||
public interface TestMapper {
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.muyu.product.service.Impl;
|
||||
|
||||
import com.muyu.product.service.TestService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/5/8 下午5:12
|
||||
*/
|
||||
@Service
|
||||
public class TestServiceImpl implements TestService {
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
package com.muyu.product.service;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/5/8 下午5:11
|
||||
*/
|
||||
public interface TestService {
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.muyu.product.mapper.TestMapper">
|
||||
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue