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 map) { return tmstruckLeaveFactoryResultMapper.updateLeaveFactory(map); } }