czt
7 小时以前 b291d46184e69b11cd9fa045e6d06be084d4203b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.fzzy.igds.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fzzy.igds.domain.Slogan;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/12/18 19:19
 */
@Mapper
public interface SloganMapper extends BaseMapper<Slogan> {
 
}