package com.tievd.jyz.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.tievd.jyz.entity.ActOrgRef;
|
import com.tievd.jyz.mapper.ActOrgRefMapper;
|
import com.tievd.jyz.service.IActOrgRefService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 活动机构关联表 服务实现类
|
* </p>
|
*
|
* @author
|
* @since 2023-08-16
|
*/
|
@Service
|
public class ActOrgRefServiceImpl extends ServiceImpl<ActOrgRefMapper, ActOrgRef> implements IActOrgRefService {
|
|
}
|