package com.ltkj.hosp.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ltkj.hosp.domain.TjSummary;
|
import com.ltkj.hosp.mapper.TjSummaryMapper;
|
import com.ltkj.hosp.service.ITjSummaryService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Company: 西安路泰科技有限公司
|
* @Author: zjh
|
* @Date: 2023/10/16 09:00
|
*/
|
@Service
|
public class TjSummaryServiceImpl extends ServiceImpl<TjSummaryMapper, TjSummary> implements ITjSummaryService {
|
}
|