QueryWrapper
new QueryWrapper<>(qo)
ScenePlateDefinition qo = new ScenePlateDefinition(); qo.setParentId(parentId); int count = this.count(new QueryWrapper<>(qo));
QueryWrapper<ScenePlateDefinition> qw = new QueryWrapper<>(); qw.eq("PARENT_ID", parentId); qw.likeRight("SCENE_CODE", plateCode_sceneCode); int count = this.count(qw);