All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fashionbrot.constraint.Violation Maven / Gradle / Ivy

The newest version!
package com.github.fashionbrot.constraint;

import lombok.Builder;
import lombok.Data;

@Builder
@Data
public class Violation {
    /**
     * 验证字段
     */
    private String fieldName;
    /**
     * 错误信息
     */
    private String msg;
    /**
     * 注解名
     */
    private String annotationName;
    /**
     * value
     */
    private Object value;
    /**
     * Array or List
     * value index
     */
    private Integer valueIndex;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy