test master 변경

This commit is contained in:
현성필
2024-01-23 11:24:09 +09:00
parent 75a695897d
commit 91e902af25
121 changed files with 329 additions and 338 deletions
@@ -0,0 +1,17 @@
package com.eactive.testmaster.common.search;
import org.springframework.data.jpa.domain.Specification;
public class SpecificationSearchModel implements SearchModel {
private final Specification specification;
public SpecificationSearchModel(Specification specification) {
this.specification = specification;
}
public Specification getSpecification() {
return specification;
}
}