店铺广告接口

This commit is contained in:
张松
2025-02-26 16:36:19 +08:00
parent 75168d7a82
commit ab23223e3d
7 changed files with 309 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.czg.service.account.mapper;
import com.mybatisflex.core.BaseMapper;
import com.czg.account.entity.ShopAd;
/**
* 店铺广告 映射层。
*
* @author zs
* @since 2025-02-26
*/
public interface ShopAdMapper extends BaseMapper<ShopAd> {
}

View File

@@ -0,0 +1,18 @@
package com.czg.service.account.service.impl;
import com.mybatisflex.spring.service.impl.ServiceImpl;
import com.czg.account.entity.ShopAd;
import com.czg.account.service.ShopAdService;
import com.czg.service.account.mapper.ShopAdMapper;
import org.springframework.stereotype.Service;
/**
* 店铺广告 服务层实现。
*
* @author zs
* @since 2025-02-26
*/
@Service
public class ShopAdServiceImpl extends ServiceImpl<ShopAdMapper, ShopAd> implements ShopAdService{
}

View File

@@ -0,0 +1,7 @@
<?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.account.mapper.ShopAdMapper">
</mapper>