DilBatchServiceImpl.java 726 B

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