该注解使用在 类名,接口头上
@JsonIgnoreProperties(value={"comid"}) //希望动态过滤掉的属性
例
@JsonIgnoreProperties(value={"comid"})
public interface CompanyFilter{
}
@JsonIgnoreProperties(value={"comid"})
public class CompanyFilter{
}
该注解使用在get方法头上
@JsonIgnore
例
@JsonIgnore
public Integer getPageSize(){
return Integer.valueOf(getRows()==null?"0":getRows().toString());
}