1
2
3
4
5
6
7
8
9
10
11
package com.dsh.activity.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.activity.entity.BenefitsVideoClassification;
 
/**
 * @author zhibing.pu
 * @date 2023/7/11 17:31
 */
public interface IBenefitsVideoClassificationService extends IService<BenefitsVideoClassification> {
}