Commit 2730531f authored by hezhen's avatar hezhen

123

parent 17212603
......@@ -52,6 +52,12 @@ public class AppVehicleController extends BaseController<VehicleBiz> {
return ObjectRestResponse.succ(baseBiz.info(vehicleFindDTO));
}
@GetMapping("detail/{id}")
@ApiModelProperty("商品详情")
public ObjectRestResponse detail(@PathVariable("id") String id ) {
return ObjectRestResponse.succ(baseBiz.selectById(id));
}
......
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