package com.dsh.activity.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.dsh.activity.entity.BenefitsVideoClassification;
|
import com.dsh.activity.mapper.BenefitsVideoClassificationMapper;
|
import com.dsh.activity.service.IBenefitsVideoClassificationService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/7/11 17:31
|
*/
|
@Service
|
public class BenefitsVideoClassificationServiceImpl extends ServiceImpl<BenefitsVideoClassificationMapper, BenefitsVideoClassification> implements IBenefitsVideoClassificationService {
|
}
|