Browse Source

add 看护人列表

18339543638 3 years ago
parent
commit
96c86a56a1

+ 2 - 2
nb-service/app-msg/src/main/java/com/nb/app/msg/entity/AppMsgEntity.java

@@ -116,9 +116,9 @@ public class AppMsgEntity  extends GenericEntity<String> {
             case ASSIST_EVAL:
                 return  getPatient()+getExtend()+"未进行疼痛评估";
             case ASSIST_LIFT:
-                return "患者绑定解除";
+                return String.format("%s与%s解除绑定",this.getSenderName(),this.getPatient());
             case DOCTOR_LIFT:
-                return "患者绑定解除";
+                return String.format("%s与%s解除绑定",this.getSenderName(),this.getPatient());
             default:  return "";
         }
     }