商品测试

dev798
wxy 2024-05-08 17:13:43 +08:00
parent 8e4e9c8527
commit efea92eb26
5 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.muyu.product.controller;
/**
* @Author: wangxinyuan
* @Date: 2024/5/8 5:11
*/
public class TestController {
}

View File

@ -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 {
}

View File

@ -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 {
}

View File

@ -0,0 +1,8 @@
package com.muyu.product.service;
/**
* @Author: wangxinyuan
* @Date: 2024/5/8 5:11
*/
public interface TestService {
}

View File

@ -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>