zhangherong
2025-03-25 801a6ba1bce0de51a75256bc1a2d45e2f61d5056
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamSparePartRequisitionDetailController.java
@@ -46,7 +46,6 @@
     * @param req
     * @return
     */
    @AutoLog(value = "备件清购单明细-分页列表查询")
    @ApiOperation(value = "备件清购单明细-分页列表查询", notes = "备件清购单明细-分页列表查询")
    @GetMapping(value = "/list")
    public Result<?> queryPageList(EamSparePartRequisitionDetail eamSparePartRequisitionDetail,
@@ -65,7 +64,6 @@
     * @param eamSparePartRequisitionDetail
     * @return
     */
    @AutoLog(value = "备件清购单明细-添加")
    @ApiOperation(value = "备件清购单明细-添加", notes = "备件清购单明细-添加")
    @PostMapping(value = "/add")
    public Result<?> add(@RequestBody EamSparePartRequisitionDetail eamSparePartRequisitionDetail) {
@@ -79,7 +77,6 @@
     * @param eamSparePartRequisitionDetail
     * @return
     */
    @AutoLog(value = "备件清购单明细-编辑")
    @ApiOperation(value = "备件清购单明细-编辑", notes = "备件清购单明细-编辑")
    @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
    public Result<?> edit(@RequestBody EamSparePartRequisitionDetail eamSparePartRequisitionDetail) {
@@ -93,7 +90,6 @@
     * @param id
     * @return
     */
    @AutoLog(value = "备件清购单明细-通过id删除")
    @ApiOperation(value = "备件清购单明细-通过id删除", notes = "备件清购单明细-通过id删除")
    @DeleteMapping(value = "/delete")
    public Result<?> delete(@RequestParam(name = "id", required = true) String id) {
@@ -107,7 +103,6 @@
     * @param ids
     * @return
     */
    @AutoLog(value = "备件清购单明细-批量删除")
    @ApiOperation(value = "备件清购单明细-批量删除", notes = "备件清购单明细-批量删除")
    @DeleteMapping(value = "/deleteBatch")
    public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
@@ -121,7 +116,6 @@
     * @param id
     * @return
     */
    @AutoLog(value = "备件清购单明细-通过id查询")
    @ApiOperation(value = "备件清购单明细-通过id查询", notes = "备件清购单明细-通过id查询")
    @GetMapping(value = "/queryById")
    public Result<?> queryById(@RequestParam(name = "id", required = true) String id) {