/**
|
* 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;
|
}
|
}
|