1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.gear.swx.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
| import com.gear.swx.domain.SwxNft;
|
| /**
| * nftMapper接口
| *
| * @author czx
| * @date 2023-11-18
| */
| @Mapper
| public interface SwxNftMapper extends BaseMapper<SwxNft> {
|
| }
|
|