old mode 100644
new mode 100755
| | |
| | | |
| | | |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.front.smo.ILoginServiceSMO; |
| | | import com.java110.front.smo.login.ILoginServiceSMO; |
| | | import com.java110.front.smo.sys.ISysServiceSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.HttpStatus; |
| | |
| | | public ResponseEntity<String> doLogin(IPageData pd) { |
| | | ResponseEntity<String> responseEntity = null; |
| | | try { |
| | | responseEntity = loginServiceSMOImpl.doLogin(pd); |
| | | responseEntity = loginServiceSMOImpl.doLogin(pd); |
| | | } catch (Exception e) { |
| | | responseEntity = new ResponseEntity<String>(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR); |
| | | } finally { |
| | | return responseEntity; |
| | | } |
| | | return responseEntity; |
| | | |
| | | } |
| | | |
| | | public ResponseEntity<String> getSysInfo(IPageData pd) { |