package com.jiuqi.mobile.nigo.comeclose.bean.define; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * * @类描述: 表单bean <br/> * @项目名称:comeclose <br/> * @版权所有(c):JOIN-CHEER <br/> * @作者:xuzhe <br/> * @创建时间:2014-12-29上午9:44:15 <br/> * @修改时间:<br/> * @修改备注: <br/> */ public class FormBean extends NiGoBean { /** * 表单名称 */ private String name; /** * 表单的action */ private String action; /** * 表单的控件 */ private FieldDefineBean[] filedDefineBeans; private int showFiledNum;//页面中显示字段数目 public int getShowFiledNum() { return showFiledNum; } public void setShowFiledNum(int showFiledNum) { this.showFiledNum = showFiledNum; } public String getName() { return name; } public void setName(String name) { this.name = name; } public FieldDefineBean[] getFiledDefineBeans() { return filedDefineBeans; } public void setFiledDefineBeans(FieldDefineBean[] filedDefineBeans) { this.filedDefineBeans = filedDefineBeans; } public String getAction() { return action; } public void setAction(String action) { this.action = action; } }