初始化提交

This commit is contained in:
谭凯凯 2025-02-10 16:23:03 +08:00 committed by Tankaikai
parent a3b0920a85
commit ebd769f052
7 changed files with 2 additions and 50 deletions

View File

@ -4,6 +4,8 @@ server:
spring:
application:
name: product-server
profiles:
active: dev
logging:
config: classpath:logback.xml

View File

@ -1,8 +0,0 @@
package com.czg.service.product.dto;
/**
* @author tankaikai
* @since 2025-02-10 11:27
*/
public class AbcDTO {
}

View File

@ -1,8 +0,0 @@
package com.czg.service.product.entity;
/**
* @author tankaikai
* @since 2025-02-10 11:27
*/
public class Abc {
}

View File

@ -1,11 +0,0 @@
package com.czg.service.product.mapper;
import com.czg.service.product.entity.Abc;
import com.mybatisflex.core.BaseMapper;
/**
* @author tankaikai
* @since 2025-02-10 11:27
*/
public interface AbcMapper extends BaseMapper<Abc> {
}

View File

@ -1,8 +0,0 @@
package com.czg.service.product.service;
/**
* @author tankaikai
* @since 2025-02-10 11:26
*/
public class AbcService {
}

View File

@ -1,8 +0,0 @@
package com.czg.service.product.service.impl;
/**
* @author tankaikai
* @since 2025-02-10 11:26
*/
public class AbcServiceImpl {
}

View File

@ -1,7 +0,0 @@
<?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.czg.service.product.mapper.AbcMapper">
</mapper>