lihong 1 年間 前
コミット
d860560425

+ 1 - 1
src/main/java/cn/hnthyy/thmz/mapper/his/mz/AHospitalDao.java → src/main/java/cn/hnthyy/thmz/mapper/his/mz/AHospitalMapper.java

@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  * @author lihong
  * @since 2023-12-28 10:49:47
  */
-public interface AHospitalDao extends BaseMapper<AHospital> {
+public interface AHospitalMapper extends BaseMapper<AHospital> {
 
 }
 

+ 2 - 2
src/main/java/cn/hnthyy/thmz/service/impl/his/mz/AHospitalServiceImpl.java

@@ -1,7 +1,7 @@
 package cn.hnthyy.thmz.service.impl.his.mz;
 
 import cn.hnthyy.thmz.entity.his.mz.AHospital;
-import cn.hnthyy.thmz.mapper.his.mz.AHospitalDao;
+import cn.hnthyy.thmz.mapper.his.mz.AHospitalMapper;
 import cn.hnthyy.thmz.service.his.mz.AHospitalService;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import org.springframework.stereotype.Service;
@@ -13,7 +13,7 @@ import org.springframework.stereotype.Service;
  * @since 2023-12-28 10:49:49
  */
 @Service("aHospitalService")
-public class AHospitalServiceImpl extends ServiceImpl<AHospitalDao, AHospital> implements AHospitalService {
+public class AHospitalServiceImpl extends ServiceImpl<AHospitalMapper, AHospital> implements AHospitalService {
 
 }