zjh
2025-03-28 ea4215c39165f49b4cd956a0b51574d90c1d9b97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ltkj.hosp.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.TjCompPayInfo;
import com.ltkj.hosp.mapper.TjCompPayInfoMapper;
import com.ltkj.hosp.service.ITjCompPayInfoService;
import org.springframework.stereotype.Service;
 
 
/**
 * 体检单位缴费明细Service业务层处理
 *
 * @author ltkj
 * @date 2023-03-14
 */
@Service
public class TjCompPayInfoServiceImpl extends ServiceImpl<TjCompPayInfoMapper, TjCompPayInfo> implements ITjCompPayInfoService {
 
}