package org.yeshi.utils.generater.vo.xmlconfig.admin.form; import org.yeshi.utils.generater.vo.xmlconfig.base.ApiData; import org.yeshi.utils.generater.vo.xmlconfig.base.FormComponent; /** * @author hxh * @title: FormComponentSelect * @description: 图片控件 * @date 2022/3/28 13:56 */ public class FormComponentImg extends FormComponent { //图片上传链接 private ApiData api; //是否可编辑图片链接 private boolean editLink; private Integer width; private Integer height; public ApiData getApi() { return api; } public void setApi(ApiData api) { this.api = api; } public boolean isEditLink() { return editLink; } public void setEditLink(boolean editLink) { this.editLink = editLink; } public Integer getWidth() { return width; } public void setWidth(Integer width) { this.width = width; } public Integer getHeight() { return height; } public void setHeight(Integer height) { this.height = height; } }