TmsTruckLeaveFactoryService.java 695 B

123456789101112131415161718192021222324
  1. package com.steerinfo.dil.service.impl;
  2. import com.steerinfo.dil.mapper.TmstruckLeaveFactoryResultMapper;
  3. import com.steerinfo.dil.service.ITmsTruckLeaveFactoryService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Service;
  6. import java.util.Map;
  7. /**
  8. * @author luobang
  9. * @create 2021-10-29 17:56
  10. */
  11. @Service
  12. public class TmsTruckLeaveFactoryService implements ITmsTruckLeaveFactoryService {
  13. @Autowired
  14. TmstruckLeaveFactoryResultMapper tmstruckLeaveFactoryResultMapper;
  15. @Override
  16. public int updateLeaveFactory(Map<String, Object> map) {
  17. return tmstruckLeaveFactoryResultMapper.updateLeaveFactory(map);
  18. }
  19. }