medicalWaste-admin/src/main/java/com/sinata/web/controller/backend/MwProtectionEquipmentController.java
@@ -23,6 +23,7 @@ import org.springframework.web.bind.annotation.RestController; import javax.validation.Valid; import java.util.List; /** * <p> @@ -126,4 +127,14 @@ return R.ok(mwProtectionEquipmentService.recordPage(query)); } /** * 防护器具列表 * * @return */ @ApiOperation("防护器具列表") @GetMapping("/list") public R<List<MwProtectionEquipmentVO>> queryList() { return R.ok(mwProtectionEquipmentService.queryList()); } }