package org.yeshi.utils.generater.vo.xmlconfig.admin; import org.yeshi.utils.generater.annotation.admin.Show; import org.yeshi.utils.generater.vo.xmlconfig.base.FormComponent; /** * @author hxh * @title: ColumnData * @description: 列信息 * @date 2022/3/28 14:05 */ public class ColumnData { //显示标题 private String title; //属性字段 private String property; //排序字段 private Integer order; //显示类型 private Show.ShowType showType; private int imgWidth; private int imgHeight; //编辑控件 private FormComponent component; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getProperty() { return property; } public void setProperty(String property) { this.property = property; } public Integer getOrder() { return order; } public void setOrder(Integer order) { this.order = order; } public FormComponent getComponent() { return component; } public void setComponent(FormComponent component) { this.component = component; } public Show.ShowType getShowType() { return showType; } public void setShowType(Show.ShowType showType) { this.showType = showType; } public int getImgWidth() { return imgWidth; } public void setImgWidth(int imgWidth) { this.imgWidth = imgWidth; } public int getImgHeight() { return imgHeight; } public void setImgHeight(int imgHeight) { this.imgHeight = imgHeight; } }