Files
nuttyreading-java/src/main/java/com/peanut/modules/book/dao/UserFollowUpDao.java
2023-10-24 10:17:40 +08:00

10 lines
282 B
Java

package com.peanut.modules.book.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.book.entity.UserFollowUpEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserFollowUpDao extends BaseMapper<UserFollowUpEntity> {
}