package com.linghu.mapper;
|
|
import com.linghu.model.entity.Platfrom;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
/**
|
* @author xy
|
* @description 针对表【platfrom】的数据库操作Mapper
|
* @createDate 2025-07-02 16:32:19
|
* @Entity generator.entity.Platfrom
|
*/
|
public interface PlatfromMapper extends BaseMapper<Platfrom> {
|
|
}
|