16 lines
339 B
Java
16 lines
339 B
Java
package net.srt.dao;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import net.srt.entity.StandardEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* @ClassName : standardMapper
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-20 11:30
|
|
*/
|
|
@Mapper
|
|
public interface StandardDao extends BaseMapper<StandardEntity> {
|
|
}
|