You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
16 lines
465 B
3 years ago
|
package com.example.ftpdemo.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.example.ftpdemo.entity.NbmsEnt;
|
||
|
import com.example.ftpdemo.mapper.NbmsEntMapper;
|
||
|
import com.example.ftpdemo.service.NbmsEntServcie;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author laifeng
|
||
|
* @since 2022/11/28
|
||
|
*/
|
||
|
@Service
|
||
|
public class NbmsEntServiceImpl extends ServiceImpl<NbmsEntMapper, NbmsEnt> implements NbmsEntServcie {
|
||
|
}
|