更多参考链接:https://github.com/FasterXML/jackson-annotations/wiki/Jackson-Annotations
1.@JsonIgnore // 在实体中不想要返回字段添加注解
2.@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss a",locale = "zh",timezone = "GMT+8")
// 这是对于时间格式设置注解
3.@JsonInclude(Include.NON_NULL) // 当该属性为null时,该字段不会显示在前端