package com.vci.ubcs.code.vo.webserviceModel.coderule; import lombok.Data; @Data public class CodeShowFieldConfigVO { private String field;// id, private String title;// 编号, private String fieldType;// text, private String fieldTypeText;// 文本框, private boolean sort;// true, private String attrSortField;// id, private String width;// 150, private boolean isquery;// true, private boolean $cellEdit;// false, private int $index;// 0, private String $fieldTypeText;// 文本框, private String $fixedPosition;// "" @Override public String toString() { return "CodeShowFieldConfigVO{" + "field='" + field + '\'' + ", title='" + title + '\'' + ", fieldType='" + fieldType + '\'' + ", fieldTypeText='" + fieldTypeText + '\'' + ", sort=" + sort + ", attrSortField='" + attrSortField + '\'' + ", width='" + width + '\'' + ", isquery=" + isquery + ", $cellEdit=" + $cellEdit + ", $index=" + $index + ", $fieldTypeText='" + $fieldTypeText + '\'' + ", $fixedPosition='" + $fixedPosition + '\'' + '}'; } }