| | |
| | | package com.whyc.controller; |
| | | |
| | | import com.whyc.dto.Page; |
| | | import com.whyc.dto.DevInfDto; |
| | | import com.whyc.dto.Response; |
| | | import com.whyc.pojo.db_lithium_ram_db.DevInf; |
| | | import com.whyc.service.DevInfService; |
| | | import com.whyc.service.UserInfService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | |
| | | @ApiOperation(value = "获取设备信息") |
| | | @PostMapping("getAllInf") |
| | | public Response getAllInf(@RequestBody Page page){ |
| | | return service.getAllInf(101,page); |
| | | public Response getAllInf(@RequestBody DevInfDto devInfDto){ |
| | | return service.getAllInf(101, devInfDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取左侧列表") |