|
@ -37,7 +37,6 @@ import com.yihu.wlyy.task.PushMsgTask;
|
|
|
import com.yihu.wlyy.util.DateUtil;
|
|
|
import com.yihu.wlyy.util.MD5;
|
|
|
import com.yihu.wlyy.wechat.util.WeiXinAccessTokenUtils;
|
|
|
import org.apache.commons.collections.map.HashedMap;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.json.JSONArray;
|
|
|
import org.json.JSONObject;
|
|
@ -874,7 +873,7 @@ public class DoctorInfoService extends BaseService {
|
|
|
|
|
|
@Transactional
|
|
|
public Map<String, Integer> updateTeamHealthDoctors(String newDoctorCode, String oldDoctorCode, String patients, String loginUser) throws Exception {
|
|
|
Map<String, Integer> returnMap = new HashedMap();
|
|
|
Map<String, Integer> returnMap = new HashMap();
|
|
|
String[] patiensString = patients.split(",");
|
|
|
Integer successs = 0;//转移成功
|
|
|
Integer error = 0;//转移失败
|
|
@ -1076,7 +1075,7 @@ public class DoctorInfoService extends BaseService {
|
|
|
|
|
|
@Transactional
|
|
|
public Map<String, Integer> updateTeamDoctors(String newDoctorCode, String oldDoctorCode, String patients, String loginUser) throws Exception {
|
|
|
Map<String, Integer> returnMap = new HashedMap();
|
|
|
Map<String, Integer> returnMap = new HashMap();
|
|
|
String[] patiensString = patients.split(",");
|
|
|
|
|
|
Integer successs = 0;//转移成功
|