|
@@ -64,10 +64,14 @@ public class QcCasesEntryHospitalFacade extends QcCasesEntryHospitalServiceImpl
|
|
|
.eq("hospital_id", Long.valueOf(SysUserUtils.getCurrentHospitalID()))
|
|
|
.set("modifier", SysUserUtils.getCurrentPrincipleID())
|
|
|
.set("gmt_modified", DateUtil.now());
|
|
|
- qcCasesEntry.set(qcCasesEntryUpdataVO.getScore() != null,"score", qcCasesEntryUpdataVO.getScore());
|
|
|
- qcCasesEntry.set(qcCasesEntryUpdataVO.getMsg() != null,"msg", qcCasesEntryUpdataVO.getMsg());
|
|
|
- qcCasesEntry.set(qcCasesEntryUpdataVO.getIsUsed() != null,"is_used", qcCasesEntryUpdataVO.getIsUsed());
|
|
|
- qcCasesEntry.set(qcCasesEntryUpdataVO.getIsReject() != null,"is_reject", qcCasesEntryUpdataVO.getIsReject());
|
|
|
+ qcCasesEntry.set(qcCasesEntryUpdataVO.getScore() != null,
|
|
|
+ "score", qcCasesEntryUpdataVO.getScore());
|
|
|
+ qcCasesEntry.set(qcCasesEntryUpdataVO.getMsg() != null,
|
|
|
+ "msg", qcCasesEntryUpdataVO.getMsg());
|
|
|
+ qcCasesEntry.set(qcCasesEntryUpdataVO.getIsUsed() != null,
|
|
|
+ "is_used", qcCasesEntryUpdataVO.getIsUsed());
|
|
|
+ qcCasesEntry.set(qcCasesEntryUpdataVO.getIsReject() != null,
|
|
|
+ "is_reject", qcCasesEntryUpdataVO.getIsReject());
|
|
|
return update(new QcCasesEntryHospital(), qcCasesEntry);
|
|
|
}
|
|
|
|