czt
2 天以前 51faf3e9c3c613e7fb12db6c88356946f2429e0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.fzzy.igds.camera.impl;
 
import com.fzzy.igds.camera.AbstractApiCameraService;
import com.fzzy.igds.constant.CameraPlayType;
import org.springframework.stereotype.Component;
 
/**
 * @Description 系统默认不做任何接口实现和处理
 * @Author CZT
 * @Date 2025/12/11 10:10
 */
@Component
public class DefaultPlayServiceImpl extends AbstractApiCameraService {
 
    @Override
    public String getType() {
        return CameraPlayType.PLAY_TYPE_DEFAULT.getCode();
    }
}