|
|
@@ -87,7 +87,7 @@ public class AppBankController extends BaseController {
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping("/saveBorrower")
|
|
|
- public AppBaseResponse saveBorrower(@Valid @RequestBody BorrowerVo vo) {
|
|
|
+ public AppBaseResponse saveBorrower( @RequestBody BorrowerVo vo) {
|
|
|
log.info("借款人保存请求的参数:" + vo);
|
|
|
String auth = getAuthorization();
|
|
|
String sysUser = (String) tokenProvider.getAppToken(auth);
|
|
|
@@ -105,7 +105,7 @@ public class AppBankController extends BaseController {
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping("/saveGuarantee")
|
|
|
- public ResponseDTO<String> saveGuarantee(@Valid @RequestBody GuaranteeVo vo) {
|
|
|
+ public ResponseDTO<String> saveGuarantee( @RequestBody GuaranteeVo vo) {
|
|
|
String auth = getAuthorization();
|
|
|
String sysUser = (String) tokenProvider.getAppToken(auth);
|
|
|
SysUserEntity entity = new SysUserEntity();
|
|
|
@@ -122,7 +122,7 @@ public class AppBankController extends BaseController {
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping("/saveMortgage")
|
|
|
- public ResponseDTO<String> saveMortgage(@Valid @RequestBody MortgageVo vo) {
|
|
|
+ public ResponseDTO<String> saveMortgage( @RequestBody MortgageVo vo) {
|
|
|
String auth = getAuthorization();
|
|
|
String sysUser = (String) tokenProvider.getAppToken(auth);
|
|
|
SysUserEntity entity = new SysUserEntity();
|