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.
21 lines
479 B
21 lines
479 B
package com.ruoyi.tc.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ruoyi.tc.entity.AssetBasicNetwork;
|
|
import com.ruoyi.tc.entity.ExamineInfo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 单位对应的检查信息(unit_examine_info)表服务接口
|
|
*
|
|
* @author makejava
|
|
* @since 2024-11-15 16:05:26
|
|
*/
|
|
public interface ExamineInfoService extends IService<ExamineInfo> {
|
|
/**
|
|
* 逻辑删除
|
|
*/
|
|
void deleteByUnitIds(List<Long> idList);
|
|
}
|