加申购车参数校验
This commit is contained in:
parent
3deac71914
commit
5932ba8f8e
|
@ -1,5 +1,6 @@
|
|||
package io.renren.modules.resourceCar.controller;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import io.renren.common.annotation.LogOperation;
|
||||
|
@ -67,8 +68,12 @@ public class ResourceCarController {
|
|||
public Result save(@RequestBody ResourceCarDTO dto){
|
||||
//效验数据
|
||||
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
||||
resourceCarService.insertOrUpdate(dto);
|
||||
return new Result();
|
||||
if (ObjectUtil.isAllNotEmpty(dto.getResourceId()) || ObjectUtil.isAllNotEmpty(dto.getUserId())) {
|
||||
resourceCarService.insertOrUpdate(dto);
|
||||
return new Result();
|
||||
} else {
|
||||
return new Result().error(500, "加申购车失败,请重试!");
|
||||
}
|
||||
}
|
||||
|
||||
@DeleteMapping("/delete")
|
||||
|
|
Loading…
Reference in New Issue