|
|
|
@ -904,6 +904,26 @@ public class StoreEmployeeService {
|
|
|
|
|
return bsdResponse.getSuccess();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 作废波司登分享二维码
|
|
|
|
|
*
|
|
|
|
|
* @param cpUserId 用户ID
|
|
|
|
|
* @param state 场景
|
|
|
|
|
* @return 返回是否成功
|
|
|
|
|
* @throws Exception 异常
|
|
|
|
|
* @author dexiang.jiang
|
|
|
|
|
* @date 2020/05/05 17:24
|
|
|
|
|
*/
|
|
|
|
|
public String cancelQrCodeFromBSDNew(String cpUserId, String state) {
|
|
|
|
|
String url = "";
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
|
|
params.put("userId", cpUserId);
|
|
|
|
|
params.put("state", state);
|
|
|
|
|
String message = HttpClientUtil.httpPost(cancelQrCode + MD5FileUtil.getMD5String("BOSIDENG" + sdf.format(new Date())), JSONObject.toJSONString(params)).getMessage();
|
|
|
|
|
return message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加组织 大区
|
|
|
|
|
*
|
|
|
|
|