| | |
| | | * @param req |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-分页列表查询") |
| | | @ApiOperation(value="工序参数维护-分页列表查询", notes="工序参数维护-分页列表查询") |
| | | @GetMapping(value = "/list") |
| | | public Result<?> queryPageList(EamProcessParameters eamProcessParameters, |
| | |
| | | * @param eamProcessParameters |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-添加") |
| | | @ApiOperation(value="工序参数维护-添加", notes="工序参数维护-添加") |
| | | @PostMapping(value = "/add") |
| | | public Result<?> add(@RequestBody EamProcessParameters eamProcessParameters) { |
| | |
| | | * @param eamProcessParameters |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-编辑") |
| | | @ApiOperation(value="工序参数维护-编辑", notes="工序参数维护-编辑") |
| | | @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) |
| | | public Result<?> edit(@RequestBody EamProcessParameters eamProcessParameters) { |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-通过id删除") |
| | | @ApiOperation(value="工序参数维护-通过id删除", notes="工序参数维护-通过id删除") |
| | | @DeleteMapping(value = "/delete") |
| | | public Result<?> delete(@RequestParam(name="id",required=true) String id) { |
| | |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-批量删除") |
| | | @ApiOperation(value="工序参数维护-批量删除", notes="工序参数维护-批量删除") |
| | | @DeleteMapping(value = "/deleteBatch") |
| | | public Result<?> deleteBatch(@RequestParam(name="ids",required=true) String ids) { |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "工序参数维护-通过id查询") |
| | | @ApiOperation(value="工序参数维护-通过id查询", notes="工序参数维护-通过id查询") |
| | | @GetMapping(value = "/queryById") |
| | | public Result<?> queryById(@RequestParam(name="id",required=true) String id) { |