zjh
7 天以前 0a469fa5898ac2b63b860d17ac10c0ebf534d82f
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 {
 
}