/**
* @JsonIgnore 不返回
*/
@JsonIgnore
private String summary;
/**
* @JsonFormat 时间注解
*/
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss",locale = "zh",timezone = "GMT+8")
private Date createTime;
/**
* @JsonInclude 空字段不返回
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
private List<Chapter> chaptersList;
private int price;
/**
* @JsonProperty 别名
*/
@JsonProperty("cover_image")
private String coverImage;
@SpringBootApplication 启动