2026-04-14 13:39:24 +08:00
|
|
|
package com.label.mapper;
|
2026-04-14 13:31:50 +08:00
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2026-04-14 13:39:24 +08:00
|
|
|
import com.label.entity.VideoProcessJob;
|
2026-04-14 13:31:50 +08:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* video_process_job 表 Mapper。
|
|
|
|
|
*/
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface VideoProcessJobMapper extends BaseMapper<VideoProcessJob> {
|
|
|
|
|
}
|