xuhy
2025-01-02 b94fffb01c94100b34e2908b4fe79c1c554b0912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import com.ruoyi.system.domain.TCommittee;
import com.ruoyi.system.mapper.TCommitteeMapper;
import com.ruoyi.system.service.TCommitteeService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 评审委员会 服务实现类
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
@Service
public class TCommitteeServiceImpl extends ServiceImpl<TCommitteeMapper, TCommittee> implements TCommitteeService {
 
}