package org.jeecg.modules.eam.service.impl; import org.jeecg.modules.eam.entity.OperationCertificateDetail; import org.jeecg.modules.eam.mapper.OperationCertificateDetailMapper; import org.jeecg.modules.eam.service.IOperationCertificateDetailService; import org.springframework.stereotype.Service; import java.util.List; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.beans.factory.annotation.Autowired; /** * @Description: 操作证管理明细 * @Author: jeecg-boot * @Date: 2023-10-17 * @Version: V1.0 */ @Service public class OperationCertificateDetailServiceImpl extends ServiceImpl implements IOperationCertificateDetailService { @Autowired private OperationCertificateDetailMapper operationCertificateDetailMapper; @Override public List selectByMainId(String mainId) { return operationCertificateDetailMapper.selectByMainId(mainId); } }