package com.steerinfo.dil.service.impl; import com.steerinfo.dil.mapper.DilBatchMapper; import com.steerinfo.dil.service.IDilBatchService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * DilBatch服务实现: * @author generator * @version 1.0-SNAPSHORT 2021-11-13 10:12 * 类描述 * 修订历史: * 日期:2021-11-13 * 作者:generator * 参考: * 描述:DilBatch服务实现 * @see null * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved. */ @Service(value = "dilBatchService") public class DilBatchServiceImpl implements IDilBatchService { @Autowired private DilBatchMapper dilBatchMapper; }