123456789101112131415161718192021222324 |
- package com.steerinfo.dil.service.impl;
- import com.steerinfo.dil.mapper.TmstruckLeaveFactoryResultMapper;
- import com.steerinfo.dil.service.ITmsTruckLeaveFactoryService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.Map;
- /**
- * @author luobang
- * @create 2021-10-29 17:56
- */
- @Service
- public class TmsTruckLeaveFactoryService implements ITmsTruckLeaveFactoryService {
- @Autowired
- TmstruckLeaveFactoryResultMapper tmstruckLeaveFactoryResultMapper;
- @Override
- public int updateLeaveFactory(Map<String, Object> map) {
- return tmstruckLeaveFactoryResultMapper.updateLeaveFactory(map);
- }
- }
|