Commit 75d38c26 authored by 鲁鸿波's avatar 鲁鸿波

承包商准入管理修改记录,通过后可删除

增加上传单位筛选条件,条件内容为组织机构单位下拉选择项,效果同节能环保管理的单位名称筛选项
parent 08e9998f
package com.testor.module.hazard.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.testor.module.hazard.model.domain.TContractorAccessLog;
import com.testor.module.hazard.model.dto.TContractorAccessLogParam;
import com.tongtech.tfw.backend.common.models.supers.SuperService;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface TContractorAccessLogService extends SuperService<TContractorAccessLog> {
/**
* 批量插入
* @param tContractorAccessLogs
*/
List<TContractorAccessLog> insertBatchContractorAccessLog(List<TContractorAccessLog> tContractorAccessLogs);
/**
* 查询承包商访问日志
* @param param
* @return
*/
Page<TContractorAccessLog> queryContractorAccessLog(TContractorAccessLogParam param);
/**
* 获取最大批次
* @param contractorAllowId
* @return
*/
String getMaxBatch(String contractorAllowId);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment