21 lines
456 B
Java
21 lines
456 B
Java
package com.zmzm.finance.common.dao;
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.zmzm.finance.common.entity.UserCourseBuyLog;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* <p>
|
|
* 用户开课记录 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author baomidou
|
|
* @since 2026-01-14
|
|
*/
|
|
@Mapper
|
|
@DS("wumen")
|
|
public interface UserCourseBuyLogMapper extends BaseMapper<UserCourseBuyLog> {
|
|
|
|
}
|