package com.linghu.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.linghu.model.entity.Platfrom;
|
import com.linghu.service.PlatfromService;
|
import com.linghu.mapper.PlatfromMapper;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author xy
|
* @description 针对表【platfrom】的数据库操作Service实现
|
* @createDate 2025-07-02 16:32:19
|
*/
|
@Service
|
public class PlatfromServiceImpl extends ServiceImpl<PlatfromMapper, Platfrom>
|
implements PlatfromService{
|
|
}
|