|
|
@@ -184,6 +184,9 @@ public class FsPrescribeController extends BaseController
|
|
|
{
|
|
|
FsPatient fsPatient = fsPatientMapper.selectFsPatientByPatientId(orderId);
|
|
|
String idCard = fsPatient.getIdCard();
|
|
|
+ if (idCard != null) {
|
|
|
+ idCard = idCard.replaceAll("(\\d{4})\\d{10}(\\w{4})", "$1**********$2");
|
|
|
+ }
|
|
|
return R.ok().put("data",idCard);
|
|
|
}
|
|
|
|