This commit is contained in:
Flow 2025-07-28 11:42:34 +08:00
parent ad89e8ecbc
commit 0697235a27
2 changed files with 10 additions and 2 deletions

View File

@ -207,7 +207,15 @@ public class InspectPatientServiceImpl implements InspectPatientService {
public InspectPatientDO getPatientShortid(String medicalSn) {
LambdaQueryWrapper<InspectPatientDO> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(InspectPatientDO::getMedicalSn, medicalSn)
.select(InspectPatientDO::getShortid);
.select(
InspectPatientDO::getShortid,
InspectPatientDO::getXcgcode,
InspectPatientDO::getNcgcode,
InspectPatientDO::getShqx,
InspectPatientDO::getPName,
InspectPatientDO::getGender,
InspectPatientDO::getCardId
);
InspectPatientDO patientDO = patientMapper.selectOne(queryWrapper);
return patientDO;
}

View File

@ -155,7 +155,7 @@ spring:
# 日志文件配置
logging:
file:
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
name: D:/logs/yudao/${spring.application.name}.log # 日志文件名,全路径
level:
# 配置自己写的 MyBatis Mapper 打印日志
cn.iocoder.yudao.module.bpm.dal.mysql: debug