123456789101112131415161718 |
- package com.fdkankan.fusion.mapper;
- import com.fdkankan.fusion.entity.TmProject;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 火调项目信息表 Mapper 接口
- * </p>
- *
- * @author
- * @since 2023-07-28
- */
- @Mapper
- public interface ITmProjectMapper extends BaseMapper<TmProject> {
- }
|