Commit 03f63834 authored by hezhen's avatar hezhen

123

parent a8d07bd0
......@@ -54,11 +54,7 @@ public class AppVehicleApplyController extends BaseController<VehicleApplyBiz> {
@GetMapping("apply/detail/{id}")
@ApiModelProperty("商品审核详情")
public ObjectRestResponse detail(@PathVariable Integer id) {
List<Integer> companyIds = getBusinessUserCompanyIds();
if (companyIds == null && companyIds.size() == 0){
return ObjectRestResponse.succ();
}
public ObjectRestResponse detail(@PathVariable("id") Integer id) {
VehicleApply vehicleApply = baseBiz.selectById(id);
Vehicle vehicle=new Vehicle();
BeanUtils.copyProperties(vehicleApply,vehicle);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment