Blame view

src/main/java/com/huaheng/pc/config/waveMaster/service/WaveMasterService.java 386 Bytes
1
2
3
4
5
6
7
8
9
10
11
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> {

}