JPA mysql Text类型 对应实体类
@Column(name ="template_foot", columnDefinition = "text") @ApiModelProperty("模板尾") @Lob private String templateFoot;
添加以下注解
@Lob
, columnDefinition = "text"
 
@Column(name ="template_foot", columnDefinition = "text") @ApiModelProperty("模板尾") @Lob private String templateFoot;
添加以下注解
@Lob
, columnDefinition = "text"
 
