luohairen
2024-11-14 247cb86585a1d1894596ed18a6c93efecb992946
1
2
3
4
5
6
7
8
9
10
package com.ycl.jxkg.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.jxkg.domain.entity.TextContent;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface TextContentMapper extends BaseMapper<TextContent> {
 
}