医生常用语模板维护->后端接口开发、数据库建表。

This commit is contained in:
2025-12-22 16:45:40 +08:00
parent 91d673de77
commit 25b3c26ec2
14 changed files with 277 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
package com.openhis.template.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.openhis.template.domain.DoctorPhrase;
public interface IDoctorPhraseService extends IService<DoctorPhrase> {
}

View File

@@ -0,0 +1,12 @@
package com.openhis.template.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.openhis.template.domain.DoctorPhrase;
import com.openhis.template.mapper.DoctorPhraseMapper;
import com.openhis.template.service.IDoctorPhraseService;
import org.springframework.stereotype.Service;
@Service
public class DoctorPhraseServiceImpl extends ServiceImpl<DoctorPhraseMapper, DoctorPhrase> implements IDoctorPhraseService {
}