Browse Source

模板

private_deployment
xhxu 1 year ago
parent
commit
1914464632
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      suimangCApi/src/main/java/com/iformall/controller/PersonMouldController.java

+ 3
- 0
suimangCApi/src/main/java/com/iformall/controller/PersonMouldController.java View File

@@ -1,6 +1,7 @@
package com.iformall.controller; package com.iformall.controller;


import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.iformall.annotation.AuthIgnore;
import com.iformall.common.ErrorCode; import com.iformall.common.ErrorCode;
import com.iformall.common.ResultData; import com.iformall.common.ResultData;
import com.iformall.domain.po.base.BaseEntity; import com.iformall.domain.po.base.BaseEntity;
@@ -38,6 +39,7 @@ public class PersonMouldController extends BaseController {
@Autowired @Autowired
private MouldPatchSignService mouldPatchSignService; private MouldPatchSignService mouldPatchSignService;


@AuthIgnore
@ApiOperation("分页列表接口") @ApiOperation("分页列表接口")
@GetMapping("list") @GetMapping("list")
@ApiImplicitParams({ @ApiImplicitParams({
@@ -59,6 +61,7 @@ public class PersonMouldController extends BaseController {
return new ResultData(page); return new ResultData(page);
} }


@AuthIgnore
@ApiOperation("根据id查询接口") @ApiOperation("根据id查询接口")
@GetMapping("/findById") @GetMapping("/findById")
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) @ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true)


Loading…
Cancel
Save