10 lines
252 B
Java
10 lines
252 B
Java
|
|
package com.gunshi.project.hsz.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.hsz.model.ByLog;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
@Mapper
|
||
|
|
public interface ByLogMapper extends BaseMapper<ByLog> {
|
||
|
|
}
|