1 2 3 4 5 6 7 8 9 10 11
package com.huaheng.pc.config.waveFlowDetail.service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.huaheng.pc.config.waveFlowDetail.domain.WaveFlowDetail; import com.huaheng.pc.config.waveFlowDetail.mapper.WaveFlowDetailMapper; import org.springframework.stereotype.Service; @Service public class WaveFlowDetailService extends ServiceImpl<WaveFlowDetailMapper, WaveFlowDetail> { }