代码修改

release
xuliangwei 2 years ago
parent 94aeead670
commit 3d19113c39
  1. 3
      dxhy-erp/src/main/java/com/dxhy/erp/service/impl/RequestRecordServiceImpl.java

@ -92,9 +92,10 @@ public class RequestRecordServiceImpl extends MpBaseServiceImpl<RequestRecordDao
@Override
@DataSource(name = "business_business_read")
public JSONObject getDetailRecord(Long id) {
log.info("查询的id:{}",id);
JSONObject json = new JSONObject();
try {
RequestRecord detailRecord = requestRecordDao.selectDetailRecord(id);
RequestRecord detailRecord = requestRecordDao.selectById(id);
log.info("查询结果:{}", JSONObject.toJSONString(detailRecord));
return json;
} catch (Exception e) {

Loading…
Cancel
Save