com.github.edgar615.util.spring.validate.ValidateProperty Maven / Gradle / Ivy
package com.github.edgar615.util.spring.validate;
import java.util.Map;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 校验类的配置.
*
* @author Edgar
* @create 2018-09-10 16:46
**/
@ConfigurationProperties(prefix = "validate")
public class ValidateProperty {
private Map> spec;
public Map> getSpec() {
return spec;
}
public void setSpec(
Map> spec) {
this.spec = spec;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy