Commit b57fe37c authored by yanzg's avatar yanzg

修复bug

parent 7aa64cce
package com.yanzuoguang.util.vo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.yanzuoguang.util.helper.JsonHelper;
import java.io.Serializable;
......@@ -13,21 +12,4 @@ import java.io.Serializable;
// @JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BaseVo implements Serializable {
private static final long serialVersionUID = -2611225711795496063L;
/**
* over ride object toString
*
* @return
*/
@Override
public String toString() {
try {
return JsonHelper.serialize(this);
} catch (Throwable ex) {
ex.printStackTrace();
return super.toString();
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment