Package com.bytedesk.call.conference
Class CallConferenceSpecification
java.lang.Object
com.bytedesk.call.conference.CallConferenceSpecification
Call会议室查询规范
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
build
(CallConferenceRequest request) 构建查询条件static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
conferenceName
(String conferenceName) 按会议室名称搜索static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
按创建者过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
按启用状态过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
maxMembersBetween
(Integer minMembers, Integer maxMembers) 按最大成员数范围过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
passwordProtected
(Boolean passwordProtected) 按密码保护状态过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
recordEnabled
(Boolean recordEnabled) 按录音状态过滤
-
Constructor Details
-
CallConferenceSpecification
public CallConferenceSpecification()
-
-
Method Details
-
build
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> build(CallConferenceRequest request) 构建查询条件 -
conferenceName
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> conferenceName(String conferenceName) 按会议室名称搜索 -
enabled
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> enabled(Boolean enabled) 按启用状态过滤 -
recordEnabled
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> recordEnabled(Boolean recordEnabled) 按录音状态过滤 -
creator
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> creator(String creator) 按创建者过滤 -
maxMembersBetween
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> maxMembersBetween(Integer minMembers, Integer maxMembers) 按最大成员数范围过滤 -
passwordProtected
public static org.springframework.data.jpa.domain.Specification<CallConferenceEntity> passwordProtected(Boolean passwordProtected) 按密码保护状态过滤
-