zjh
2025-04-10 6d09c6301492d3095ff64dba2336f0d0b69638e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ltkj.hosp.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.TjCompPay;
import com.ltkj.hosp.mapper.TjCompPayMapper;
import com.ltkj.hosp.service.ITjCompPayService;
import org.springframework.stereotype.Service;
 
/**
 * 体检单位缴费主Service业务层处理
 *
 * @author ltkj
 * @date 2023-03-14
 */
@Service
public class TjCompPayServiceImpl extends ServiceImpl<TjCompPayMapper, TjCompPay> implements ITjCompPayService {
}