123456789101112131415161718 |
- package com.huimv.management.dao;
- import com.huimv.management.entity.PeriodEntity;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 栏期信息表
- *
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-05-07 15:32:42
- */
- @Mapper
- public interface PeriodDao extends BaseMapper<PeriodEntity> {
- }
|