提交merge1.3
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright ©2023 CJB-CNIT Team. All rights reserved
|
||||
*/
|
||||
package com.openhis.template.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.openhis.template.domain.EncounterAutoRoll;
|
||||
|
||||
/**
|
||||
* 住院就诊滚方绑定
|
||||
*
|
||||
* @author zwh
|
||||
* @date 2025-04-09
|
||||
*/
|
||||
public interface IEncounterAutoRollService extends IService<EncounterAutoRoll> {}
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright ©2023 CJB-CNIT Team. All rights reserved
|
||||
*/
|
||||
package com.openhis.template.service.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.openhis.template.domain.EncounterAutoRoll;
|
||||
import com.openhis.template.mapper.EncounterAutoRollMapper;
|
||||
import com.openhis.template.service.IEncounterAutoRollService;
|
||||
|
||||
/**
|
||||
* 住院就诊滚方绑定
|
||||
*
|
||||
* @author zwh
|
||||
* @date 2025-04-09
|
||||
*/
|
||||
@Service
|
||||
public class EncounterAutoRollServiceImpl extends ServiceImpl<EncounterAutoRollMapper, EncounterAutoRoll>
|
||||
implements IEncounterAutoRollService {}
|
||||
Reference in New Issue
Block a user