package com.changhong.epc.bean.form; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; @Data @EqualsAndHashCode(callSuper=true) public class FormBaseUpdateRequestForm extends BaseEntity implements Serializable { /** * serialVersionUID */ private static final long serialVersionUID = -8784900005036735194L; /** * 表单集合ID */ private String formSetID = ""; /** * 表单ID */ private String formID = ""; /** * 表单版本 */ private String formVer = ""; /** * 表单名 */ private String formName = ""; /** * 模板ID */ private String templateID = ""; /** * 描述 */ private String description = ""; /** * 启用设置 */ private String enablesetting = ""; /** * 数据验证规则ID */ private String validationRuleGroupID; /** * 设计风格 */ private String designMode; /** * 表单布局(json) */ private String formLayout; /** * 字段集合(json) */ private String fieldset; /** * 表单结果画面(json) */ private String resultForm; /** * 表单链接 */ private String publishURL; /** * 是否需要访问密码 */ private String requirepassword; /** * 访问密码 */ private String accesspassword; /** * 查询链接 */ private String searchURL; /** * 下载链接 */ private String downloadURL; }