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.
18 lines
544 B
Java
18 lines
544 B
Java
9 months ago
|
package com.supervision.police.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.supervision.police.domain.CasePerson;
|
||
|
|
||
|
public interface CasePersonService extends IService<CasePerson> {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 新增案件行为人
|
||
|
* @param caseId 案件id
|
||
|
* @param caseActorName 案件行为人姓名
|
||
|
* @param caseActorIdCard 案件行为人身份证号
|
||
|
* @return 插入结果 true 成功 false 失败
|
||
|
*/
|
||
|
boolean saveCaseActor(String caseId,String caseActorName,String caseActorIdCard);
|
||
|
}
|