SleepStatusDao.java 440 B

12345678910111213141516171819
  1. package com.huimv.apiservice.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.huimv.apiservice.entity.SleepStatusEntity;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.springframework.stereotype.Repository;
  6. /**
  7. * 睡眠状态表
  8. *
  9. * @author yinhao
  10. * @email yinhao@163.com
  11. * @date 2021-05-07 15:32:42
  12. */
  13. @Mapper
  14. @Repository
  15. public interface SleepStatusDao extends BaseMapper<SleepStatusEntity> {
  16. }