package com.aps.core.controller.mainPlan;
|
|
import com.aps.common.core.web.controller.BaseController;
|
import com.aps.common.core.web.page.TableDataInfo;
|
import com.aps.common.security.annotation.RequiresPermissions;
|
import com.aps.core.domain.ApsPlateOrderPlanManager;
|
import com.aps.core.service.IApsPlateOrderPlanManagerService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.util.List;
|
|
/**
|
* 钣金工单计划管理LineController
|
*
|
* @author sfd
|
* @date 2025-05-08
|
*/
|
@RestController
|
@RequestMapping("/ApsPlatOrderPlanManager")
|
public class ApsPlatOrderPlanManagerController extends BaseController
|
{
|
@Autowired
|
private IApsPlateOrderPlanManagerService iapPlateOrderPlanManagerService;
|
|
/**
|
* 查询钣金工单计划
|
*/
|
@RequiresPermissions("ApsPlatOrderPlanManager:list")
|
@GetMapping("/list")
|
public TableDataInfo list(ApsPlateOrderPlanManager apsPlateOrderPlanManager)
|
{
|
startPage();
|
List<ApsPlateOrderPlanManager> list = iapPlateOrderPlanManagerService.selectApsPlanOrderManager(apsPlateOrderPlanManager);
|
return getDataTable(list);
|
}
|
|
}
|