You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
13 lines
315 B
package com.example.upsecuritydata.mapper; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.example.upsecuritydata.entity.NbmsEnt; |
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
/** |
|
* @author laifeng |
|
* @since 2022/11/28 |
|
*/ |
|
@Mapper |
|
public interface NbmsEntMapper extends BaseMapper<NbmsEnt> { |
|
}
|
|
|