package com.gear.swx.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.gear.swx.mapper.SwxNftUserRecordMapper;
|
import com.gear.swx.domain.SwxNftUserRecord;
|
import com.gear.swx.service.ISwxNftUserRecordService;
|
|
/**
|
* nft购买记录Service业务层处理
|
*
|
* @author czx
|
* @date 2023-11-18
|
*/
|
@Service
|
public class SwxNftUserRecordServiceImpl extends ServiceImpl<SwxNftUserRecordMapper, SwxNftUserRecord> implements ISwxNftUserRecordService {
|
@Autowired
|
private SwxNftUserRecordMapper swxNftUserRecordMapper;
|
}
|