feat(REQ-2699):页面元素增加字段

This commit is contained in:
李昆鹏 2024-08-05 15:21:23 +08:00
parent 02452cf587
commit 8b54388a96
3 changed files with 23 additions and 0 deletions

View File

@ -14,6 +14,7 @@ public enum PageElementTypeEnum {
PAGE("PAGE", "页面"),
COMPONENT("COMPONENT", "组件"),
APP_ENTRY("APP_ENTRY", "应用入口"),
;

View File

@ -48,6 +48,16 @@ public class PageElementResp {
*/
private String linkUrl;
/**
* app类型APP:原生H5:h5页面
*/
private String appType;
/**
* 客户端版本号
*/
private Integer version;
/**
* 是否已勾选
*/

View File

@ -61,4 +61,16 @@ public class SaasPageElement extends BaseEntity<SaasPageElement> {
*/
@TableField("create_name")
private String createName;
/**
* app类型APP:原生H5:h5页面
*/
@TableField("app_type")
private String appType;
/**
* 客户端版本号
*/
@TableField("version")
private Integer version;
}