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.
21 lines
530 B
Java
21 lines
530 B
Java
1 year ago
|
package com.shxy.xyhkcamera.service.impl;
|
||
|
|
||
|
import com.shxy.xyhkcamera.entity.ModevEaifEntity;
|
||
|
import com.shxy.xyhkcamera.mapper.ModevEaifMapper;
|
||
|
import com.shxy.xyhkcamera.service.ModevEaifService;
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 服务实现类
|
||
|
* </p>
|
||
|
*
|
||
|
* @author jingjing
|
||
|
* @since 2024-05-20
|
||
|
*/
|
||
|
@Service
|
||
|
public class ModevEaifServiceImp extends ServiceImpl<ModevEaifMapper, ModevEaifEntity> implements ModevEaifService {
|
||
|
|
||
|
}
|