12 lines
425 B
Java
12 lines
425 B
Java
|
package com.dota.nexus.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.dota.nexus.entity.Anniversary;
|
||
|
import com.dota.nexus.mapper.AnniversaryMapper;
|
||
|
import com.dota.nexus.service.AnniversaryService;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
@Service
|
||
|
public class AnniversaryServiceImpl extends ServiceImpl<AnniversaryMapper, Anniversary> implements AnniversaryService {
|
||
|
}
|