MatchCollegeCountServiceImpl.java
549 Bytes
package com.zhongzhi.service.impl;
import com.zhongzhi.model.MatchCollegeCountDO;
import com.zhongzhi.dao.MatchCollegeCountDAO;
import com.zhongzhi.service.MatchCollegeCountService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 服务实现类
* </p>
*
* @author DengMin
* @since 2025-06-10
*/
@Service
public class MatchCollegeCountServiceImpl extends ServiceImpl<MatchCollegeCountDAO, MatchCollegeCountDO> implements MatchCollegeCountService {
}