|
@@ -0,0 +1,220 @@
|
|
|
+package org.hswebfarmework.web.entity.form;
|
|
|
+import org.hswebframework.web.commons.entity.SimpleGenericEntity;
|
|
|
+
|
|
|
+/**
|
|
|
+* 动态表单
|
|
|
+* @author hsweb-generator-online
|
|
|
+*/
|
|
|
+public class SimpleDynamicFormEntity extends SimpleGenericEntity<String> implements DynamicFormEntity{
|
|
|
+ //表单名称
|
|
|
+ private String name;
|
|
|
+ //数据库表名
|
|
|
+ private String tableName;
|
|
|
+ //备注
|
|
|
+ private String descibe;
|
|
|
+ //版本
|
|
|
+ private Long version;
|
|
|
+ //创建人id
|
|
|
+ private String creatorId;
|
|
|
+ //创建时间
|
|
|
+ private Long createTime;
|
|
|
+ //修改时间
|
|
|
+ private Long updateTime;
|
|
|
+ //是否已发布
|
|
|
+ private Boolean deployed;
|
|
|
+ //别名
|
|
|
+ private String alias;
|
|
|
+ //触发器
|
|
|
+ private String triggers;
|
|
|
+ //表链接
|
|
|
+ private String correlations;
|
|
|
+ //数据源id,为空使用默认数据源
|
|
|
+ private String dataSourceId;
|
|
|
+ //其他配置
|
|
|
+ private String properties;
|
|
|
+ //表单类型
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return 表单名称
|
|
|
+ */
|
|
|
+ public String getName(){
|
|
|
+ return this.name;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param name 表单名称
|
|
|
+ */
|
|
|
+ public void setName(String name){
|
|
|
+ this.name=name;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 数据库表名
|
|
|
+ */
|
|
|
+ public String getTableName(){
|
|
|
+ return this.tableName;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param tableName 数据库表名
|
|
|
+ */
|
|
|
+ public void setTableName(String tableName){
|
|
|
+ this.tableName=tableName;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 备注
|
|
|
+ */
|
|
|
+ public String getDescibe(){
|
|
|
+ return this.descibe;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param descibe 备注
|
|
|
+ */
|
|
|
+ public void setDescibe(String descibe){
|
|
|
+ this.descibe=descibe;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 版本
|
|
|
+ */
|
|
|
+ public Long getVersion(){
|
|
|
+ return this.version;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param version 版本
|
|
|
+ */
|
|
|
+ public void setVersion(Long version){
|
|
|
+ this.version=version;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 创建人id
|
|
|
+ */
|
|
|
+ public String getCreatorId(){
|
|
|
+ return this.creatorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param creatorId 创建人id
|
|
|
+ */
|
|
|
+ public void setCreatorId(String creatorId){
|
|
|
+ this.creatorId=creatorId;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 创建时间
|
|
|
+ */
|
|
|
+ public Long getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param createTime 创建时间
|
|
|
+ */
|
|
|
+ public void setCreateTime(Long createTime){
|
|
|
+ this.createTime=createTime;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 修改时间
|
|
|
+ */
|
|
|
+ public Long getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param updateTime 修改时间
|
|
|
+ */
|
|
|
+ public void setUpdateTime(Long updateTime){
|
|
|
+ this.updateTime=updateTime;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 是否已发布
|
|
|
+ */
|
|
|
+ public Boolean isDeployed(){
|
|
|
+ return this.deployed;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param deployed 是否已发布
|
|
|
+ */
|
|
|
+ public void setDeployed(Boolean deployed){
|
|
|
+ this.deployed=deployed;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 别名
|
|
|
+ */
|
|
|
+ public String getAlias(){
|
|
|
+ return this.alias;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param alias 别名
|
|
|
+ */
|
|
|
+ public void setAlias(String alias){
|
|
|
+ this.alias=alias;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 触发器
|
|
|
+ */
|
|
|
+ public String getTriggers(){
|
|
|
+ return this.triggers;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param triggers 触发器
|
|
|
+ */
|
|
|
+ public void setTriggers(String triggers){
|
|
|
+ this.triggers=triggers;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 表链接
|
|
|
+ */
|
|
|
+ public String getCorrelations(){
|
|
|
+ return this.correlations;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param correlations 表链接
|
|
|
+ */
|
|
|
+ public void setCorrelations(String correlations){
|
|
|
+ this.correlations=correlations;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 数据源id,为空使用默认数据源
|
|
|
+ */
|
|
|
+ public String getDataSourceId(){
|
|
|
+ return this.dataSourceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param dataSourceId 数据源id,为空使用默认数据源
|
|
|
+ */
|
|
|
+ public void setDataSourceId(String dataSourceId){
|
|
|
+ this.dataSourceId=dataSourceId;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 其他配置
|
|
|
+ */
|
|
|
+ public String getProperties(){
|
|
|
+ return this.properties;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param properties 其他配置
|
|
|
+ */
|
|
|
+ public void setProperties(String properties){
|
|
|
+ this.properties=properties;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return 表单类型
|
|
|
+ */
|
|
|
+ public String getType(){
|
|
|
+ return this.type;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param type 表单类型
|
|
|
+ */
|
|
|
+ public void setType(String type){
|
|
|
+ this.type=type;
|
|
|
+ }
|
|
|
+}
|