You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
Java
13 lines
451 B
Java
1 year ago
|
package com.supervision.police.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.supervision.police.domain.NotePrompt;
|
||
|
import com.supervision.police.mapper.NotePromptMapper;
|
||
|
import com.supervision.police.service.NotePromptService;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
@Service
|
||
|
public class NotePromptServiceImpl extends ServiceImpl<NotePromptMapper, NotePrompt> implements NotePromptService {
|
||
|
|
||
|
}
|