mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-24 01:29:36 +08:00
27 lines
417 B
Java
27 lines
417 B
Java
![]() |
package com.ics.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.ics.admin.domain.Clue;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 线索管理Service接口
|
||
|
*
|
||
|
* @author ics
|
||
|
* @date 2021-03-23
|
||
|
*/
|
||
|
public interface IClueService extends IService<Clue> {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 新增线索管理
|
||
|
*
|
||
|
* @param clue 线索管理
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int insertClue(Clue clue);
|
||
|
|
||
|
|
||
|
}
|