11 lines
279 B
Java
11 lines
279 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.github.yulichang.base.MPJBaseMapper;
|
|
import com.peanut.modules.common.entity.ClassExamOption;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface ClassExamOptionDao extends MPJBaseMapper<ClassExamOption> {
|
|
}
|
|
|