| | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.core.context.PageData; |
| | | import com.java110.utils.constant.CommonConstant; |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | @RequestMapping(path = "/loginProperty", method = RequestMethod.POST) |
| | | public ResponseEntity<String> loginProperty(@RequestBody String postInfo, HttpServletRequest request) { |
| | | /*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/ |
| | | String appId = request.getHeader("APP_ID"); |
| | | if(StringUtil.isEmpty(appId)){ |
| | | appId = request.getHeader("APP-ID"); |
| | | } |
| | | IPageData pd = PageData.newInstance().builder("", "", "", postInfo, |
| | | "login", "", "", "", |
| | | request.getHeader("APP_ID")); |
| | | appId); |
| | | ResponseEntity<String> responseEntity = propertyAppLoginSMOImpl.doLogin(pd); |
| | | if(responseEntity.getStatusCode() != HttpStatus.OK){ |
| | | return responseEntity; |