peng
2026-03-24 73d124ce71e60685b19cc74a44e21dc080f7bfb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.tievd.jyz.service.impl;
 
import com.tievd.jyz.entity.Camera;
import com.tievd.jyz.mapper.CameraMapper;
import com.tievd.jyz.service.ICameraService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * Camera
 * @author      cube
 * @since       2023-02-27
 * @version     V2.0.0
 */
@Service
public class CameraServiceImpl extends ServiceImpl<CameraMapper, Camera> implements ICameraService {
 
}