935090232@qq.com
2022-03-13 76ed413ae6fd573996207760904304b4951df5d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
 * projectName: h3-organization
 * fileName: ErrorMessage.java
 * packageName: com.hydee.common.validate.beans
 * date: 2019-06-17 10:42
 * copyright(c) 2019 http://www.hydee.cn/ Inc. All rights reserved.
 */
package com.matrix.system.common.validate.beans;
 
/**
 * @version: V1.0
 * @author: LiHengye
 * @className: ErrorMessage
 * @packageName: com.hydee.common.validate.beans
 * @description: 错误信息
 * @data: 2019-06-17 10:42
 **/
public class ErrorMessage {
 
    private String propertyPath;
 
    private String message;
 
    public ErrorMessage(String propertyPath, String message) {
        this.propertyPath = propertyPath;
        this.message = message;
    }
 
    public String getPropertyPath() {
        return propertyPath;
    }
 
    public void setPropertyPath(String propertyPath) {
        this.propertyPath = propertyPath;
    }
 
    public String getMessage() {
        return message;
    }
 
    public void setMessage(String message) {
        this.message = message;
    }
}