package com.java110.boot.smo.staff.impl; import com.alibaba.fastjson.JSONObject; import com.java110.boot.smo.DefaultAbstractComponentSMO; import com.java110.boot.smo.staff.IResetStaffPwdServiceSMO; import com.java110.core.context.IPageData; import com.java110.utils.exception.SMOException; import com.java110.utils.util.Assert; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; import org.springframework.web.client.RestTemplate; /** * 查询carInout服务类 */ @Service("resetStaffPwdSMOImpl") public class ResetStaffPwdSMOImpl extends DefaultAbstractComponentSMO implements IResetStaffPwdServiceSMO { @Autowired private RestTemplate restTemplate; @Override public ResponseEntity reset(IPageData pd) throws SMOException { return businessProcess(pd); } @Override protected void validate(IPageData pd, JSONObject paramIn) { Assert.hasKeyAndValue(paramIn, "communityId", "必填,请填写小区信息"); Assert.hasKeyAndValue(paramIn, "userId", "必填,请填写用户ID"); //super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.AGENT_HAS_LIST_CARINOUT); } @Override protected ResponseEntity doBusinessProcess(IPageData pd, JSONObject paramIn) { super.validateStoreStaffCommunityRelationship(pd, restTemplate); String apiUrl = "user.resetStaffPwd"; ResponseEntity responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(), apiUrl, HttpMethod.POST); return responseEntity; } public RestTemplate getRestTemplate() { return restTemplate; } public void setRestTemplate(RestTemplate restTemplate) { this.restTemplate = restTemplate; } }