WaveMasterService.java
448 Bytes
package com.huaheng.pc.shipment.waveMaster.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.waveMaster.mapper.WaveMasterMapper;
import com.huaheng.pc.shipment.waveMaster.domain.WaveMaster;
@Service
public class WaveMasterService extends ServiceImpl<WaveMasterMapper, WaveMaster> {
}