12345678910111213141516171819 |
- package com.huimv.apiservice.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.huimv.apiservice.entity.SleepStatusEntity;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Repository;
- /**
- * 睡眠状态表
- *
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-05-07 15:32:42
- */
- @Mapper
- @Repository
- public interface SleepStatusDao extends BaseMapper<SleepStatusEntity> {
-
- }
|