| | |
| | | @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), |
| | | @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"), |
| | | @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = false, value = "公司id"), |
| | | @ApiImplicitParam(paramType = "query", name = "deviceType", dataType = "int", required = false, value = "设备类型1计算机设备2办公自动化设备3外部设备4其他"), |
| | | }) |
| | | @GetMapping("/selectStandingBookList") |
| | | public CommonResult selectStandingBookList(StandingBook standingBook){ |
| | |
| | | <if test="companyId != null"> |
| | | and a.company_id = #{companyId} |
| | | </if> |
| | | <if test="deviceType != null"> |
| | | and a.device_type = #{deviceType} |
| | | </if> |
| | | order by a.create_time desc |
| | | </select> |
| | | |