kongdeqiang
2024-07-15 ae30a7db511ae2439289a7dd137fa3229af75f74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.zczx.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.zczx.entity.VideoPlan;
import com.by4cloud.platformx.zczx.mapper.VideoPlanMapper;
import com.by4cloud.platformx.zczx.service.VideoPlanService;
import org.springframework.stereotype.Service;
/**
 * 视频采集任务
 *
 * @author kdq
 * @date 2024-07-10 09:27:52
 */
@Service
public class VideoPlanServiceImpl extends ServiceImpl<VideoPlanMapper, VideoPlan> implements VideoPlanService {
}