15 lines
325 B
Java
15 lines
325 B
Java
|
package com.mosty.spxl.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.mosty.base.model.entity.spxl.TbSpxlSpxlfaSxtz;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* @author dw
|
||
|
* @since 2022/7/11
|
||
|
**/
|
||
|
@Mapper
|
||
|
public interface TbSpxlSpxlfaSxtzMapper extends BaseMapper<TbSpxlSpxlfaSxtz> {
|
||
|
|
||
|
}
|