| | |
| | | import com.aps.common.security.annotation.RequiresPermissions; |
| | | import com.aps.core.domain.ApsPlateOrderPlanDate; |
| | | import com.aps.core.domain.ApsPlateOrderPlanManager; |
| | | import com.aps.core.domain.ApsPlatePlan; |
| | | import com.aps.core.domain.ApsPlateStandardRequire; |
| | | import com.aps.core.service.IApsPlateOrderPlanManagerService; |
| | | import com.aps.core.service.IApsPlateStandardRequireBomOrderDetailService; |
| | | import jakarta.annotation.Resource; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | @Autowired |
| | | private IApsPlateOrderPlanManagerService iapPlateOrderPlanManagerService; |
| | | |
| | | @Resource |
| | | private IApsPlateStandardRequireBomOrderDetailService requireBomOrderDetailService; |
| | | /** |
| | | * 查询钣金工单计划 |
| | | */ |
| | |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | /*@RequiresPermissions("ApsPlatOrderPlanManager:list")*/ |
| | | @PostMapping("/upAndDownList") |
| | | public TableDataInfo upAndDownList(@RequestBody ApsPlateOrderPlanManager apsPlateOrderPlanManager) |
| | | { |
| | | |
| | | List<ApsPlatePlan> list = requireBomOrderDetailService.selectRequireUpAndDownLevel(apsPlateOrderPlanManager.getRequireId()); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | } |