master
parent
7c06ca1984
commit
03d415d7bc
|
|
@ -53,7 +53,7 @@ public class DriverController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<DriverEntity> detail(@RequestParam Long id) {
|
public R<DriverEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(driverService.detail(id));
|
return R.success(driverService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class ProjectController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<ProjectEntity> detail(@RequestParam Long id) {
|
public R<ProjectEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(projectService.detail(id));
|
return R.success(projectService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class StationController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<StationEntity> detail(@RequestParam Long id) {
|
public R<StationEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(stationService.detail(id));
|
return R.success(stationService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class TruckController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<TruckEntity> detail(@RequestParam Long id) {
|
public R<TruckEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(truckService.detail(id));
|
return R.success(truckService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class BillController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<BillEntity> detail(@RequestParam Long id) {
|
public R<BillEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(billService.detail(id));
|
return R.success(billService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class ExpenseItemController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<ExpenseItemEntity> detail(@RequestParam Long id) {
|
public R<ExpenseItemEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(expenseItemService.detail(id));
|
return R.success(expenseItemService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class MoneyAccountController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<MoneyAccountEntity> detail(@RequestParam Long id) {
|
public R<MoneyAccountEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(moneyAccountService.detail(id));
|
return R.success(moneyAccountService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class MoneyFlowController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<MoneyFlowEntity> detail(@RequestParam Long id) {
|
public R<MoneyFlowEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(moneyFlowService.detail(id));
|
return R.success(moneyFlowService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class GoodsController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<GoodsEntity> detail(@RequestParam Long id) {
|
public R<GoodsEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(goodsService.detail(id));
|
return R.success(goodsService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class GoodsCategoryController {
|
||||||
* 详情
|
* 详情
|
||||||
*/
|
*/
|
||||||
@GetMapping("/detail")
|
@GetMapping("/detail")
|
||||||
public R<GoodsCategoryEntity> detail(@RequestParam Long id) {
|
public R<GoodsCategoryEntity> detail(@RequestParam("id") Long id) {
|
||||||
return R.success(goodsCategoryService.detail(id));
|
return R.success(goodsCategoryService.detail(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue