1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ycl.service.platform.zf;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ycl.entity.platform.zf.VideowarmEventsreport;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author lyq
| * @since 2022-09-16
| */
| public interface IVideowarmEventsreportService extends IService<VideowarmEventsreport> {
|
| }
|
|