package com.dy.pipIrrApp.inspect;
|
|
import com.dy.pipIrrGlobal.daoOp.OpeInspectMapper;
|
import com.dy.pipIrrGlobal.daoOp.OpeTrackMapper;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-09-24 10:21
|
* @LastEditTime 2024-09-24 10:21
|
* @Description
|
*/
|
|
@Slf4j
|
@Service
|
public class InspectSv {
|
@Autowired
|
private OpeInspectMapper opeInspectMapper;
|
|
@Autowired
|
private OpeTrackMapper opeTrackMapper;
|
}
|