医生常用语模板维护->后端接口开发、数据库建表。
This commit is contained in:
@@ -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> {
|
||||
}
|
||||
@@ -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 {
|
||||
}
|
||||
Reference in New Issue
Block a user