package com.gk.hotwork.doublePrevention.service.baseService;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gk.hotwork.doublePrevention.entity.PreventReportBatch;
|
|
public interface PreventReportBatchService extends IService<PreventReportBatch> {
|
/**
|
* 批次Id插入
|
* */
|
int insertBatchId(PreventReportBatch reportBatch);
|
}
|