14 lines
298 B
Java
14 lines
298 B
Java
package com.peanut.modules.book.dao;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.peanut.modules.book.entity.BookClockinPunchEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface BookClockinPunchDao extends BaseMapper<BookClockinPunchEntity> {
|
|
|
|
|
|
|
|
|
|
}
|