提交merge1.3

This commit is contained in:
2025-12-27 15:30:25 +08:00
parent 8c607c8749
commit 088861f66e
1245 changed files with 220442 additions and 77616 deletions

View File

@@ -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> {}

View File

@@ -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 {}