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 {
|
|
}
|