|
|
@@ -2,6 +2,7 @@ package com.fs.app.controller;
|
|
|
|
|
|
import com.fs.common.core.domain.R;
|
|
|
import com.fs.his.vo.FsDoctorPrescribeListDVO;
|
|
|
+import com.fs.qw.domain.FsCompanyCustomer;
|
|
|
import com.fs.qw.param.FsDoctorMemberSalesQueryParam;
|
|
|
import com.fs.qw.service.IFsDoctorMemberSalesService;
|
|
|
import com.fs.qw.vo.FsDoctorMemberSalesVO;
|
|
|
@@ -26,6 +27,12 @@ public class FsDoctorMemberSalesController extends AppBaseController {
|
|
|
Long doctorId = Long.parseLong(getDoctorId());
|
|
|
param.setDoctorId(doctorId);
|
|
|
List<FsDoctorMemberSalesVO> voList = doctorMemberSalesService.selectFsDoctorMemberSalesVOList(param,1);
|
|
|
+ //电话号码脱敏
|
|
|
+ for (FsDoctorMemberSalesVO item : voList) {
|
|
|
+ if (item.getPhone() != null) {
|
|
|
+ item.setPhone(item.getPhone().replaceAll("(\\d{3})\\d*(\\d{4})", "$1****$2"));
|
|
|
+ }
|
|
|
+ }
|
|
|
PageInfo<FsDoctorMemberSalesVO> listPageInfo=new PageInfo<>(voList);
|
|
|
return R.ok().put("data", listPageInfo);
|
|
|
}
|