class Article{
private Long articleId;
private Set<Tag> tags;
}
class Tag{
private Set<Article> articles;
private Set<TagLocale> tagLocales;
}
class TagLocale{
private Tag tag;
private String name;
}
当我使用条件查询文章by articleId,同时,分层查询标签和tagLocales时,我该如何使用标准?