10 lines
281 B
Java
10 lines
281 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.github.yulichang.base.MPJBaseMapper;
|
|
import com.peanut.modules.common.entity.UserToCourseEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface UserToCourseDao extends MPJBaseMapper<UserToCourseEntity> {
|
|
}
|