You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
Java
16 lines
325 B
Java
package com.supervision.police.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.supervision.police.domain.CasePerson;
|
|
|
|
/**
|
|
* 案件人物表(CasePerson)表数据库访问层
|
|
*
|
|
* @author qmy
|
|
* @since 2024-07-06 13:27:29
|
|
*/
|
|
public interface CasePersonMapper extends BaseMapper<CasePerson> {
|
|
|
|
}
|
|
|