pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/msCenter/CenterMsReceiveSv.java
New file @@ -0,0 +1,25 @@ package com.dy.pipIrrRemote.msCenter; import com.dy.pipIrrGlobal.daoPr.PrIntakeMapper; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * @Author: liurunyu * @Date: 2025/2/13 14:08 * @Description */ @Slf4j @Service public class CenterMsReceiveSv { @Autowired private PrIntakeMapper intakeDao ; public String selectIntakeName(Long id){ return this.intakeDao.getNameById(id) ; } }