Commit d0c033ae authored by 盖献康's avatar 盖献康

Merge branch 'gaixiankang' into 'dev'

分页、按章节排序

See merge request !98
parents ce10da5e 598b48fd
......@@ -38,10 +38,11 @@ public class ReviewStandardController extends BaseController {
* 分页查询标准(检验内容库)
* @return
*/
@Anonymous
@ApiOperation("分页查询标准(检验内容库)")
@PostMapping("/list")
public TableDataInfo<ReviewStandardResponse> listByPage(@Validated @RequestBody ReviewStandardListByPageRequest request) {
startPage();
startPage(request);
List<ReviewStandardResponse> list = reviewStandardService.listByPage(request);
return getDataTable(list);
}
......
......@@ -44,6 +44,8 @@
<if test="chapter != null and chapter != ''"> and chapter like concat('%', #{chapter}, '%') </if>
<if test="text != null and text != ''"> and text like concat('%', #{text}, '%') </if>
</where>
ORDER BY
chapter
</select>
......
......@@ -31,7 +31,7 @@ public class InspectionContentTest {
@Test
public void standardAdd() {
ReviewStandard build = ReviewStandard.builder()
.chapter("7.1.1.1")
.chapter("7.1.1.2")
.text("车端具备远程控制功能的系统、授权的第三方应用等外部连接系统不应存在由汽车行业权威漏洞平台6个月前公布且未经处置的高危及以上的安全漏洞。\n" +
"\n" +
"注1:汽车行业权威漏洞平台如车联网产品专用漏洞库NVDB-CAVD等政府主管部门认可的其他漏洞平台。\n" +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment