|
|
@@ -135,7 +135,6 @@ public class UserInfoCollectionController extends AppBaseController {
|
|
|
/**
|
|
|
* 提交用户填写采集信息问题(只有用户自主填写完采集信息时才调用)
|
|
|
* */
|
|
|
- @Login
|
|
|
@ApiOperation("提交用户填写采集信息问题")
|
|
|
@PostMapping("/submitCollectionAnswerParam")
|
|
|
public R submitCollectionAnswerParam(@RequestBody SubmitCollectionAnswerParam param)
|
|
|
@@ -152,11 +151,7 @@ public class UserInfoCollectionController extends AppBaseController {
|
|
|
// }
|
|
|
param.setUserId(Long.parseLong(getUserId()));
|
|
|
int result = userInformationCollectionService.submitCollectionAnswerParam(param);
|
|
|
- if (result > 0) {
|
|
|
- return R.ok();
|
|
|
- } else {
|
|
|
- return R.error();
|
|
|
- }
|
|
|
+ return R.ok();
|
|
|
}
|
|
|
|
|
|
/**
|