初版表设计导入

This commit is contained in:
guorui
2025-02-20 10:13:14 +08:00
parent dad6d41cbc
commit ff2321e858
212 changed files with 5896 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
package com.openhis.medication.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.medication.domain.MedicationDefinition;
/**
* 药品定义管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface MedicationDefinitionMapper extends BaseMapper<MedicationDefinition> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.medication.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.medication.domain.MedicationDispense;
/**
* 药品发放管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface MedicationDispenseMapper extends BaseMapper<MedicationDispense> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.medication.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.medication.domain.Medication;
/**
* 药品基本信息管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface MedicationMapper extends BaseMapper<Medication> {
}

View File

@@ -0,0 +1,17 @@
package com.openhis.medication.mapper;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.medication.domain.MedicationRequest;
/**
* 药品请求管理Mapper接口
*
* @author system
* @date 2025-02-20
*/
@Repository
public interface MedicationRequestMapper extends BaseMapper<MedicationRequest> {
}