feat(REQ-2545): 页面绑定关系增加类型字段。

This commit is contained in:
李昆鹏 2024-07-02 18:50:56 +08:00
parent 7364478ef4
commit 31a10e9403

View File

@ -32,6 +32,13 @@ public class SaasPageElementFeatureResourceRelation extends BaseEntity<SaasPageE
@TableField("update_by") @TableField("update_by")
private Long updateBy; private Long updateBy;
/**
* 绑定类型0默认类型 1(页面默认路由)
* @see cn.axzo.tyr.client.common.enums.PageElementFeatureResourceRelationTypeEnum
*/
@TableField("type")
private Integer type;
/** /**
* 页面元素code * 页面元素code
*/ */
@ -49,11 +56,4 @@ public class SaasPageElementFeatureResourceRelation extends BaseEntity<SaasPageE
*/ */
@TableField("terminal") @TableField("terminal")
private String terminal; private String terminal;
/**
* 绑定类型0默认类型 1(页面默认路由)
* @see cn.axzo.tyr.client.common.enums.PageElementFeatureResourceRelationTypeEnum
*/
@TableField("type")
private Integer type;
} }