zjh
6 天以前 769f5f1c452560ab044fee905c1c514c9ca373bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 {
}