15 lines
306 B
Java
15 lines
306 B
Java
package com.gunshi.project.xyt.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.gunshi.project.xyt.model.ResPerson;
|
|
|
|
/**
|
|
* Description:
|
|
* Created by XuSan on 2024/9/23.
|
|
*
|
|
* @author XuSan
|
|
* @version 1.0
|
|
*/
|
|
public interface ResPersonMapper extends BaseMapper<ResPerson> {
|
|
}
|