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