WaveFlowDetailService.java 480 Bytes
package com.huaheng.pc.shipment.waveFlowDetail.service;

import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.shipment.waveFlowDetail.domain.WaveFlowDetail;
import com.huaheng.pc.shipment.waveFlowDetail.mapper.WaveFlowDetailMapper;
@Service
public class WaveFlowDetailService extends ServiceImpl<WaveFlowDetailMapper, WaveFlowDetail> {

}