WaveMasterService.java
386 Bytes
package com.huaheng.pc.config.waveMaster.service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.pc.config.waveMaster.domain.WaveMaster;
import com.huaheng.pc.config.waveMaster.mapper.WaveMasterMapper;
import org.springframework.stereotype.Service;
@Service
public class WaveMasterService extends ServiceImpl<WaveMasterMapper, WaveMaster> {
}