修改
This commit is contained in:
parent
ad89e8ecbc
commit
0697235a27
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user