预约管理->相关文件转移、号源后端接口实现、前端页面逻辑、数据处理修改。

This commit is contained in:
2025-12-15 16:50:16 +08:00
parent cf16c497bd
commit a077bd57d4
32 changed files with 489 additions and 62 deletions

View File

@@ -0,0 +1,9 @@
package com.openhis.appointmentmanage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.appointmentmanage.domain.Dept;
import org.springframework.stereotype.Repository;
@Repository
public interface DeptMapper extends BaseMapper<Dept> {
}

View File

@@ -0,0 +1,9 @@
package com.openhis.appointmentmanage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.appointmentmanage.domain.DoctorSchedule;
import org.springframework.stereotype.Repository;
@Repository
public interface DoctorScheduleMapper extends BaseMapper<DoctorSchedule> {
}

View File

@@ -0,0 +1,9 @@
package com.openhis.appointmentmanage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.appointmentmanage.domain.SchedulePool;
import org.springframework.stereotype.Repository;
@Repository
public interface SchedulePoolMapper extends BaseMapper<SchedulePool> {
}

View File

@@ -0,0 +1,9 @@
package com.openhis.appointmentmanage.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.openhis.appointmentmanage.domain.ScheduleSlot;
import org.springframework.stereotype.Repository;
@Repository
public interface ScheduleSlotMapper extends BaseMapper<ScheduleSlot> {
}