| | |
| | | package com.aps.core.controller.mainPlan; |
| | | |
| | | import com.aps.common.core.web.controller.BaseController; |
| | | import com.aps.common.core.web.domain.AjaxResult; |
| | | import com.aps.common.core.web.page.TableDataInfo; |
| | | import com.aps.core.domain.ApsPlateOrderPlanDate; |
| | | import com.aps.core.domain.ApsPlateOrderPlanManager; |
| | | import com.aps.core.domain.ApsPlateStandardRequire; |
| | | 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 org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | return list; |
| | | } |
| | | |
| | | @PutMapping("/planDate") |
| | | public AjaxResult list(@RequestBody ApsPlateOrderPlanDate apsPlateOrderPlanDate) |
| | | { |
| | | iapPlateOrderPlanManagerService.updatePlanDate(apsPlateOrderPlanDate); |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | } |